From 47a1d0d62cfaa0f71e834b1d6bd5f60d22bade16 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 26 Oct 2024 21:04:04 +0100 Subject: [PATCH 01/13] start --- code/__DEFINES/wycomputer.dm | 5 + code/game/machinery/computer/wy_computer.dm | 156 ++++++++++++++ code/game/machinery/doors/poddoor/almayer.dm | 5 + colonialmarines.dme | 2 + maps/map_files/USS_Almayer/USS_Almayer.dmm | 6 +- tgui/packages/tgui/interfaces/WYComputer.jsx | 215 +++++++++++++++++++ 6 files changed, 384 insertions(+), 5 deletions(-) create mode 100644 code/__DEFINES/wycomputer.dm create mode 100644 code/game/machinery/computer/wy_computer.dm create mode 100644 tgui/packages/tgui/interfaces/WYComputer.jsx diff --git a/code/__DEFINES/wycomputer.dm b/code/__DEFINES/wycomputer.dm new file mode 100644 index 000000000000..8d7dded87c90 --- /dev/null +++ b/code/__DEFINES/wycomputer.dm @@ -0,0 +1,5 @@ +#define WY_COMP_ACCESS_DIRECTOR 6 +#define WY_COMP_ACCESS_SENIOR_LEAD 5 +#define WY_COMP_ACCESS_CORPORATE 2 +#define WY_COMP_ACCESS_FORBIDDEN 1 +#define WY_COMP_ACCESS_LOGGED_OUT 0 diff --git a/code/game/machinery/computer/wy_computer.dm b/code/game/machinery/computer/wy_computer.dm new file mode 100644 index 000000000000..e846c4cd1d94 --- /dev/null +++ b/code/game/machinery/computer/wy_computer.dm @@ -0,0 +1,156 @@ +// #################### WY Intranet Console ##################### +/obj/structure/machinery/computer/wy_intranet + name = "WY Intranet Terminal" + desc = "A standard issue Weyland-Yutani terminal for accessing the corporate intranet." + icon_state = "medlaptop" + explo_proof = TRUE + + var/current_menu = "login" + var/last_menu = "" + + /// The last person to login. + var/last_login = "No User" + + var/authentication = WY_COMP_ACCESS_LOGGED_OUT + + /// A list of everyone who has logged in. + var/list/login_history = list() + + /// The ID of the wall divider(s) linked to this console. + var/divider_id + + COOLDOWN_DECLARE(printer_cooldown) + +/obj/structure/machinery/computer/wy_intranet/liaison + divider_id = "CLRoomDivider" + +// ------ WY Intranet Console UI ------ // + +/obj/structure/machinery/computer/wy_intranet/attack_hand(mob/user as mob) + if(..() || !allowed(usr) || inoperable()) + return FALSE + + tgui_interact(user) + return TRUE + +/obj/structure/machinery/computer/wy_intranet/tgui_interact(mob/user, datum/tgui/ui, datum/ui_state/state) + ui = SStgui.try_update_ui(user, src, ui) + if(!ui) + ui = new(user, src, "WYComputer", name) + ui.open() + +/obj/structure/machinery/computer/wy_intranet/ui_data(mob/user) + var/list/data = list() + + data["current_menu"] = current_menu + data["last_page"] = last_menu + data["logged_in"] = last_login + + data["access_text"] = "intranet level [authentication], [wy_auth_to_text(authentication)]." + data["access_level"] = authentication + + data["alert_level"] = GLOB.security_level + data["worldtime"] = world.time + + data["access_log"] = login_history + + + data["printer_cooldown"] = !COOLDOWN_FINISHED(src, printer_cooldown) + + + return data + +/obj/structure/machinery/computer/wy_intranet/ui_status(mob/user, datum/ui_state/state) + . = ..() + if(!allowed(user)) + return UI_UPDATE + if(inoperable()) + return UI_DISABLED + +/obj/structure/machinery/computer/wy_intranet/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state) + . = ..() + if(.) + return + var/mob/user = ui.user + var/playsound = TRUE + + switch (action) + if("go_back") + if(!last_menu) + return to_chat(user, SPAN_WARNING("Error, no previous page detected.")) + var/temp_holder = current_menu + current_menu = last_menu + last_menu = temp_holder + + if("login") + var/mob/living/carbon/human/human_user = user + var/obj/item/card/id/idcard = human_user.get_active_hand() + if(istype(idcard)) + authentication = get_wy_access(idcard) + last_login = idcard.registered_name + else if(human_user.wear_id) + idcard = human_user.get_idcard() + if(idcard) + authentication = get_wy_access(idcard) + last_login = idcard.registered_name + else + to_chat(human_user, SPAN_WARNING("You require an ID card to access this terminal!")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + if(authentication) + login_history += "[last_login] at [worldtime2text()], Intranet Tier [authentication] - [wy_auth_to_text(authentication)]." + current_menu = "main" + + // -- Page Changers -- // + if("logout") + last_menu = current_menu + current_menu = "login" + login_history += "[last_login] logged out at [worldtime2text()]." + last_login = "No User" + authentication = WY_COMP_ACCESS_LOGGED_OUT + + if("home") + last_menu = current_menu + current_menu = "main" + if("page_1to1") + last_menu = current_menu + current_menu = "talking" + if("page_announcements") + last_menu = current_menu + current_menu = "announcements" + + if("unlock_divider") + for(var/obj/structure/machinery/door/poddoor/divider in GLOB.machines) + if(divider.id == divider_id) + if(divider.density) + INVOKE_ASYNC(divider, TYPE_PROC_REF(/obj/structure/machinery/door, open)) + else + INVOKE_ASYNC(divider, TYPE_PROC_REF(/obj/structure/machinery/door, close)) + + if(playsound) + playsound(src, "keyboard_alt", 15, 1) + + + +/obj/structure/machinery/computer/proc/get_wy_access(obj/item/card/id/card) + if(card.paygrade in GLOB.wy_highcom_paygrades) + return WY_COMP_ACCESS_SENIOR_LEAD + if(ACCESS_WY_GENERAL in card.access) + return WY_COMP_ACCESS_CORPORATE + else + return WY_COMP_ACCESS_FORBIDDEN + + + +/obj/structure/machinery/computer/proc/wy_auth_to_text(access_level) + switch(access_level) + if(WY_COMP_ACCESS_LOGGED_OUT) + return "Logged Out" + if(WY_COMP_ACCESS_FORBIDDEN) + return "Unauthorized User" + if(WY_COMP_ACCESS_CORPORATE) + return "Weyland-Yutani Employee" + if(WY_COMP_ACCESS_SENIOR_LEAD) + return "Weyland-Yutani Senior Leadership" + if(WY_COMP_ACCESS_DIRECTOR) + return "Weyland-Yutani Directorate" diff --git a/code/game/machinery/doors/poddoor/almayer.dm b/code/game/machinery/doors/poddoor/almayer.dm index 2b296412df7d..e264c9cb7f0f 100644 --- a/code/game/machinery/doors/poddoor/almayer.dm +++ b/code/game/machinery/doors/poddoor/almayer.dm @@ -22,6 +22,11 @@ icon_state = "almayer_pdoor1" base_icon_state = "almayer_pdoor" +/obj/structure/machinery/door/poddoor/almayer/blended/liaison + name = "\improper Room Divider" + id = "CLRoomDivider" + layer = 3.1 + /obj/structure/machinery/door/poddoor/almayer/blended/open density = FALSE diff --git a/colonialmarines.dme b/colonialmarines.dme index 4f2a681799d9..54d5c0b4de24 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -123,6 +123,7 @@ #include "code\__DEFINES\vv.dm" #include "code\__DEFINES\weapon_stats.dm" #include "code\__DEFINES\weather.dm" +#include "code\__DEFINES\wycomputer.dm" #include "code\__DEFINES\xeno.dm" #include "code\__DEFINES\dcs\flags.dm" #include "code\__DEFINES\dcs\helpers.dm" @@ -942,6 +943,7 @@ #include "code\game\machinery\computer\sentencing.dm" #include "code\game\machinery\computer\skills.dm" #include "code\game\machinery\computer\station_alert.dm" +#include "code\game\machinery\computer\wy_computer.dm" #include "code\game\machinery\door_display\door_display.dm" #include "code\game\machinery\doors\airlock.dm" #include "code\game\machinery\doors\airlock_control.dm" diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 52fdc85ca8cb..82f6025d8a88 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -66993,11 +66993,7 @@ /turf/closed/wall/almayer, /area/almayer/command/securestorage) "xqQ" = ( -/obj/structure/machinery/door/poddoor/almayer/blended{ - id = "RoomDivider"; - layer = 3.1; - name = "\improper Room Divider" - }, +/obj/structure/machinery/door/poddoor/almayer/blended/liaison, /turf/open/floor/almayer/plate, /area/almayer/command/corporateliaison) "xrg" = ( diff --git a/tgui/packages/tgui/interfaces/WYComputer.jsx b/tgui/packages/tgui/interfaces/WYComputer.jsx new file mode 100644 index 000000000000..4df248eeaa94 --- /dev/null +++ b/tgui/packages/tgui/interfaces/WYComputer.jsx @@ -0,0 +1,215 @@ +// -------------------------------------------------------------------- // +// Please ensure when updating this menu, changes are reflected in AresAdmin.js +// -------------------------------------------------------------------- // + +import { useBackend } from '../backend'; +import { Box, Button, Flex, Section, Stack } from '../components'; +import { Window } from '../layouts'; + +const PAGES = { + login: () => Login, + main: () => MainMenu, +}; + +export const WYComputer = (props) => { + const { data } = useBackend(); + const { current_menu, last_page, access_text, logged_in } = data; + const PageComponent = PAGES[current_menu](); + + let themecolor = 'crtyellow'; + if (current_menu === 'emergency') { + themecolor = 'crtred'; + } + + return ( + + {!!current_menu === 'Login' && ( +
+ + +
+ )} + + + + +
+ ); +}; + +const Login = (props) => { + const { act } = useBackend(); + + return ( + + WY Intranet Terminal + + WY-DOS Executive + + Version 1.3.7 + Copyright © 2182, Weyland Yutani Corp. + + + + ); +}; + +const MainMenu = (props) => { + const { data, act } = useBackend(); + const { logged_in, access_text, last_page, current_menu, access_level } = + data; + + return ( + <> +
+ + +
+ +
+

Navigation Menu

+ + {access_level >= 4 && ( + + +

Intranet Tier 4

+
+ + + +
+ )} +
+ {access_level >= 3 && ( +
+

Security Protocols

+ + + act('unlock_divider')} + > + Room Divider + + + + + + +
+ )} + + ); +}; From a7f2e5adf7b7259edfdf2aa1579f29f805046d59 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Wed, 6 Nov 2024 02:48:45 +0000 Subject: [PATCH 02/13] Intranet Console --- code/__DEFINES/ARES.dm | 2 + code/__DEFINES/objects.dm | 1 + code/__DEFINES/wycomputer.dm | 15 +- code/game/machinery/ARES/ARES_interface.dm | 2 +- .../machinery/ARES/ARES_interface_admin.dm | 2 +- .../machinery/ARES/ARES_interface_apollo.dm | 2 +- code/game/machinery/ARES/ARES_procs.dm | 2 +- code/game/machinery/ARES/apollo_pda.dm | 2 +- code/game/machinery/computer/wy_computer.dm | 251 ++++++++++++++++-- code/game/machinery/doors/poddoor/almayer.dm | 6 +- .../structures/pipes/vents/pump_scrubber.dm | 22 +- maps/map_files/USS_Almayer/USS_Almayer.dmm | 76 +++--- tgui/packages/tgui/interfaces/WYComputer.jsx | 236 +++++++++++++--- 13 files changed, 510 insertions(+), 109 deletions(-) diff --git a/code/__DEFINES/ARES.dm b/code/__DEFINES/ARES.dm index 55aa68f97309..bf1684d62941 100644 --- a/code/__DEFINES/ARES.dm +++ b/code/__DEFINES/ARES.dm @@ -82,3 +82,5 @@ /// Time until someone can respawn as Working Joe #define JOE_JOIN_DEAD_TIME (15 MINUTES) + +GLOBAL_LIST_EMPTY_TYPED(gas_vents, /obj/structure/pipes/vents/pump/no_boom/gas) diff --git a/code/__DEFINES/objects.dm b/code/__DEFINES/objects.dm index 26db2f3d2254..bc8752a1e9ae 100644 --- a/code/__DEFINES/objects.dm +++ b/code/__DEFINES/objects.dm @@ -87,6 +87,7 @@ GLOBAL_LIST_INIT(RESTRICTED_CAMERA_NETWORKS, list( //Those networks can only be CAMERA_NET_COLONY, CAMERA_NET_OVERWATCH, CAMERA_NET_ARES, + CAMERA_NET_CONTAINMENT_HIDDEN, )) #define STASIS_IN_BAG 1 diff --git a/code/__DEFINES/wycomputer.dm b/code/__DEFINES/wycomputer.dm index 8d7dded87c90..e51a035f0471 100644 --- a/code/__DEFINES/wycomputer.dm +++ b/code/__DEFINES/wycomputer.dm @@ -1,5 +1,16 @@ -#define WY_COMP_ACCESS_DIRECTOR 6 -#define WY_COMP_ACCESS_SENIOR_LEAD 5 +/// WY Corporate Director +#define WY_COMP_ACCESS_DIRECTOR 7 +/// WY Corporate Leadership (Chief Exec and Div Manager) +#define WY_COMP_ACCESS_SENIOR_LEAD 6 +/// WY Corporate Supervisors (Asst. Manager and Exec. Supervisor) +#define WY_COMP_ACCESS_SUPERVISOR 5 +/// WY Senior Employees (Exec. Specialists and Senior Execs.) +#define WY_COMP_ACCESS_CORPORATE_SENIOR 4 +/// WY Corporate Liaison +#define WY_COMP_ACCESS_LIAISON 3 +/// WY Corporate Employees #define WY_COMP_ACCESS_CORPORATE 2 +/// Unauthenticated Personnel #define WY_COMP_ACCESS_FORBIDDEN 1 +/// Logged out... #define WY_COMP_ACCESS_LOGGED_OUT 0 diff --git a/code/game/machinery/ARES/ARES_interface.dm b/code/game/machinery/ARES/ARES_interface.dm index 1c6d085d5ed0..3a4c14ebe037 100644 --- a/code/game/machinery/ARES/ARES_interface.dm +++ b/code/game/machinery/ARES/ARES_interface.dm @@ -575,7 +575,7 @@ if("trigger_vent") playsound = FALSE - var/obj/structure/pipes/vents/pump/no_boom/gas/sec_vent = locate(params["vent"]) + var/obj/structure/pipes/vents/pump/no_boom/gas/ares/sec_vent = locate(params["vent"]) if(!istype(sec_vent) || sec_vent.welded) to_chat(user, SPAN_WARNING("ERROR: Gas release failure.")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) diff --git a/code/game/machinery/ARES/ARES_interface_admin.dm b/code/game/machinery/ARES/ARES_interface_admin.dm index 758ba9fbb5e7..dc9b8c5cb478 100644 --- a/code/game/machinery/ARES/ARES_interface_admin.dm +++ b/code/game/machinery/ARES/ARES_interface_admin.dm @@ -498,7 +498,7 @@ return TRUE if("trigger_vent") - var/obj/structure/pipes/vents/pump/no_boom/gas/sec_vent = locate(params["vent"]) + var/obj/structure/pipes/vents/pump/no_boom/gas/ares/sec_vent = locate(params["vent"]) if(!istype(sec_vent) || sec_vent.welded) to_chat(user, SPAN_WARNING("ERROR: Gas release failure.")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) diff --git a/code/game/machinery/ARES/ARES_interface_apollo.dm b/code/game/machinery/ARES/ARES_interface_apollo.dm index 5c17f2ac87aa..b838cf89d668 100644 --- a/code/game/machinery/ARES/ARES_interface_apollo.dm +++ b/code/game/machinery/ARES/ARES_interface_apollo.dm @@ -420,7 +420,7 @@ if("trigger_vent") playsound = FALSE - var/obj/structure/pipes/vents/pump/no_boom/gas/sec_vent = locate(params["vent"]) + var/obj/structure/pipes/vents/pump/no_boom/gas/ares/sec_vent = locate(params["vent"]) if(!istype(sec_vent) || sec_vent.welded) to_chat(user, SPAN_WARNING("ERROR: Gas release failure.")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) diff --git a/code/game/machinery/ARES/ARES_procs.dm b/code/game/machinery/ARES/ARES_procs.dm index ef1b836a3d4b..6f45055020f6 100644 --- a/code/game/machinery/ARES/ARES_procs.dm +++ b/code/game/machinery/ARES/ARES_procs.dm @@ -57,7 +57,7 @@ GLOBAL_LIST_INIT(maintenance_categories, list( /datum/ares_link/proc/get_ares_vents() var/list/security_vents = list() var/datum/ares_link/link = GLOB.ares_link - for(var/obj/structure/pipes/vents/pump/no_boom/gas/vent in link.linked_vents) + for(var/obj/structure/pipes/vents/pump/no_boom/gas/ares/vent in link.linked_vents) if(!vent.vent_tag) vent.vent_tag = "Security Vent #[link.tag_num]" link.tag_num++ diff --git a/code/game/machinery/ARES/apollo_pda.dm b/code/game/machinery/ARES/apollo_pda.dm index ad070a8e63c7..b97becd72445 100644 --- a/code/game/machinery/ARES/apollo_pda.dm +++ b/code/game/machinery/ARES/apollo_pda.dm @@ -447,7 +447,7 @@ if("trigger_vent") playsound = FALSE - var/obj/structure/pipes/vents/pump/no_boom/gas/sec_vent = locate(params["vent"]) + var/obj/structure/pipes/vents/pump/no_boom/gas/ares/sec_vent = locate(params["vent"]) if(!istype(sec_vent) || sec_vent.welded) to_chat(user, SPAN_WARNING("ERROR: Gas release failure.")) playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) diff --git a/code/game/machinery/computer/wy_computer.dm b/code/game/machinery/computer/wy_computer.dm index e846c4cd1d94..b508ec82a077 100644 --- a/code/game/machinery/computer/wy_computer.dm +++ b/code/game/machinery/computer/wy_computer.dm @@ -17,12 +17,59 @@ var/list/login_history = list() /// The ID of the wall divider(s) linked to this console. - var/divider_id + var/divider_id = null + /// Whether or not the control panel for a hidden cell is available. + var/hidden_cell_id = null + /// The ID of any security systems. (Flashbulbs) + var/security_system_id = null + + // If the room divider, or cell doors/shutters are open or not. + var/open_divider = FALSE + var/open_cell_door = FALSE + var/open_cell_shutters = FALSE + + /// A loose number to order security vents if they aren't pre-ordered. + var/vent_tag_num = 1 + + /// Machinery the console interacts with (doors/shutters) + var/list/obj/structure/machinery/targets = list() COOLDOWN_DECLARE(printer_cooldown) + COOLDOWN_DECLARE(cell_flasher) + COOLDOWN_DECLARE(sec_flasher) + +/obj/structure/machinery/computer/wy_intranet/Initialize() + . = ..() + return INITIALIZE_HINT_LATELOAD + +/obj/structure/machinery/computer/wy_intranet/LateInitialize() + . = ..() + get_targets() + +/obj/structure/machinery/computer/wy_intranet/proc/get_targets() + targets = list() + for(var/obj/structure/machinery/door/target_door in GLOB.machines) + if(target_door.id == divider_id) + targets += target_door + continue + if(target_door.id == hidden_cell_id) + targets += target_door + + for(var/obj/structure/machinery/flasher/target_flash in GLOB.machines) + if(target_flash.id == hidden_cell_id) + targets += target_flash + continue + if(target_flash.id == security_system_id) + targets += target_flash + + for(var/obj/structure/pipes/vents/pump/no_boom/gas/gas_vent in GLOB.gas_vents) + if(gas_vent.network_id == security_system_id) + targets += gas_vent /obj/structure/machinery/computer/wy_intranet/liaison divider_id = "CLRoomDivider" + hidden_cell_id = "CL_Containment" + security_system_id = "CL_Security" // ------ WY Intranet Console UI ------ // @@ -46,7 +93,7 @@ data["last_page"] = last_menu data["logged_in"] = last_login - data["access_text"] = "intranet level [authentication], [wy_auth_to_text(authentication)]." + data["access_text"] = "Intranet Tier [authentication], [wy_auth_to_text(authentication)]." data["access_level"] = authentication data["alert_level"] = GLOB.security_level @@ -54,9 +101,17 @@ data["access_log"] = login_history + data["has_room_divider"] = divider_id + data["has_hidden_cell"] = hidden_cell_id + + data["open_divider"] = open_divider + data["open_cell_door"] = open_cell_door + data["open_cell_shutters"] = open_cell_shutters data["printer_cooldown"] = !COOLDOWN_FINISHED(src, printer_cooldown) + data["cell_flash_cooldown"] = !COOLDOWN_FINISHED(src, cell_flasher) + data["security_vents"] = get_security_vents() return data @@ -112,20 +167,50 @@ if("home") last_menu = current_menu current_menu = "main" - if("page_1to1") - last_menu = current_menu - current_menu = "talking" - if("page_announcements") + if("page_vents") last_menu = current_menu - current_menu = "announcements" + current_menu = "vents" if("unlock_divider") - for(var/obj/structure/machinery/door/poddoor/divider in GLOB.machines) - if(divider.id == divider_id) - if(divider.density) - INVOKE_ASYNC(divider, TYPE_PROC_REF(/obj/structure/machinery/door, open)) - else - INVOKE_ASYNC(divider, TYPE_PROC_REF(/obj/structure/machinery/door, close)) + toggle_divider() + + if("cell_shutters") + if(!open_cell_shutters) + open_shutters() + else + close_door() + close_shutters() + + if("cell_door") + if(!open_cell_door) + open_door() + else + close_door() + + if("cell_flash") + trigger_cell_flash() + + if("security_flash") + trigger_sec_flash() + + if("trigger_vent") + playsound = FALSE + var/obj/structure/pipes/vents/pump/no_boom/gas/sec_vent = locate(params["vent"]) + if(!istype(sec_vent) || sec_vent.welded) + to_chat(user, SPAN_WARNING("ERROR: Gas release failure.")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + if(!COOLDOWN_FINISHED(sec_vent, vent_trigger_cooldown)) + to_chat(user, SPAN_WARNING("ERROR: Insufficient gas reserve for this vent.")) + playsound(src, 'sound/machines/buzz-two.ogg', 15, 1) + return FALSE + to_chat(user, SPAN_WARNING("Initiating gas release from [sec_vent.vent_tag].")) + playsound(src, 'sound/machines/chime.ogg', 15, 1) + COOLDOWN_START(sec_vent, vent_trigger_cooldown, 30 SECONDS) + ares_apollo_talk("Nerve Gas release imminent from [sec_vent.vent_tag].")//Ares still monitors release of gas, even in the CLs vents. + log_ares_security("Nerve Gas Release", "Released Nerve Gas from Vent '[sec_vent.vent_tag]'.") + sec_vent.create_gas(VENT_GAS_CN20, 6, 5 SECONDS) + log_admin("[key_name(user)] released nerve gas from Vent '[sec_vent.vent_tag]' via WY Intranet.") if(playsound) playsound(src, "keyboard_alt", 15, 1) @@ -133,9 +218,19 @@ /obj/structure/machinery/computer/proc/get_wy_access(obj/item/card/id/card) - if(card.paygrade in GLOB.wy_highcom_paygrades) - return WY_COMP_ACCESS_SENIOR_LEAD if(ACCESS_WY_GENERAL in card.access) + if(card.paygrade) + switch(card.paygrade) + if(PAY_SHORT_WYC10) + return WY_COMP_ACCESS_DIRECTOR + if(PAY_SHORT_WYC9, PAY_SHORT_WYC8) + return WY_COMP_ACCESS_SENIOR_LEAD + if(PAY_SHORT_WYC7, PAY_SHORT_WYC6) + return WY_COMP_ACCESS_SUPERVISOR + if(PAY_SHORT_WYC5, PAY_SHORT_WYC4) + return WY_COMP_ACCESS_CORPORATE_SENIOR + if(card.assignment == JOB_CORPORATE_LIAISON) + return WY_COMP_ACCESS_LIAISON return WY_COMP_ACCESS_CORPORATE else return WY_COMP_ACCESS_FORBIDDEN @@ -148,9 +243,135 @@ return "Logged Out" if(WY_COMP_ACCESS_FORBIDDEN) return "Unauthorized User" + if(WY_COMP_ACCESS_LIAISON) + return "Weyland-Yutani Liaison" if(WY_COMP_ACCESS_CORPORATE) return "Weyland-Yutani Employee" + if(WY_COMP_ACCESS_SUPERVISOR) + return "Weyland-Yutani Supervisor" if(WY_COMP_ACCESS_SENIOR_LEAD) return "Weyland-Yutani Senior Leadership" if(WY_COMP_ACCESS_DIRECTOR) return "Weyland-Yutani Directorate" + + + +// Opens and locks doors, power check +/obj/structure/machinery/computer/wy_intranet/proc/open_door(force = FALSE) + if(inoperable() && !force) + return FALSE + + for(var/obj/structure/machinery/door/airlock/target_door in targets) + if(target_door.id != hidden_cell_id) + continue + if(!target_door.density) + continue + target_door.unlock(force) + target_door.open(force) + open_cell_door = TRUE + + return TRUE + +// Closes and unlocks doors, power check +/obj/structure/machinery/computer/wy_intranet/proc/close_door() + if(inoperable()) + return FALSE + + for(var/obj/structure/machinery/door/airlock/target_door in targets) + if(target_door.id != hidden_cell_id) + continue + if(target_door.density) + continue + target_door.close() + target_door.lock() + open_cell_door = FALSE + + return TRUE + +// Opens and locks doors, power check +/obj/structure/machinery/computer/wy_intranet/proc/open_shutters(force = FALSE) + if(inoperable() && !force) + return FALSE + + for(var/obj/structure/machinery/door/poddoor/target_shutter in targets) + if(target_shutter.id != hidden_cell_id) + continue + if(target_shutter.stat & BROKEN) + continue + if(!target_shutter.density) + continue + target_shutter.open() + open_cell_shutters = TRUE + return TRUE + +// Closes and unlocks doors, power check +/obj/structure/machinery/computer/wy_intranet/proc/close_shutters() + if(inoperable()) + return FALSE + for(var/obj/structure/machinery/door/poddoor/target_shutter in targets) + if(target_shutter.id != hidden_cell_id) + continue + if(target_shutter.stat & BROKEN) + continue + if(target_shutter.density) + continue + target_shutter.close() + open_cell_shutters = FALSE + return TRUE + +/obj/structure/machinery/computer/wy_intranet/proc/toggle_divider() + if(inoperable()) + return FALSE + if(open_divider) + for(var/obj/structure/machinery/door/poddoor/divider in targets) + if(divider.id != divider_id) + continue + if(divider.density) + continue + divider.close() + open_divider = FALSE + else + for(var/obj/structure/machinery/door/poddoor/divider in targets) + if(divider.id != divider_id) + continue + if(!divider.density) + continue + divider.open() + open_divider = TRUE + +/obj/structure/machinery/computer/wy_intranet/proc/trigger_cell_flash() + if(!COOLDOWN_FINISHED(src, cell_flasher)) + return FALSE + + for(var/obj/structure/machinery/flasher/target_flash in targets) + if(target_flash.id != hidden_cell_id) + continue + target_flash.flash() + COOLDOWN_START(src, cell_flasher, 15 SECONDS) + return TRUE + +/obj/structure/machinery/computer/wy_intranet/proc/trigger_sec_flash() + if(!COOLDOWN_FINISHED(src, sec_flasher)) + return FALSE + + for(var/obj/structure/machinery/flasher/target_flash in targets) + if(target_flash.id != security_system_id) + continue + target_flash.flash() + COOLDOWN_START(src, sec_flasher, 15 SECONDS) + return TRUE + +/obj/structure/machinery/computer/wy_intranet/proc/get_security_vents() + var/list/security_vents = list() + for(var/obj/structure/pipes/vents/pump/no_boom/gas/vent in targets) + if(!vent.vent_tag) + vent.vent_tag = "Security Vent #[vent_tag_num]" + vent_tag_num++ + + var/list/current_vent = list() + var/is_available = COOLDOWN_FINISHED(vent, vent_trigger_cooldown) + current_vent["vent_tag"] = vent.vent_tag + current_vent["ref"] = "\ref[vent]" + current_vent["available"] = is_available + security_vents += list(current_vent) + return security_vents diff --git a/code/game/machinery/doors/poddoor/almayer.dm b/code/game/machinery/doors/poddoor/almayer.dm index 77456c7cb507..4dc952541ab7 100644 --- a/code/game/machinery/doors/poddoor/almayer.dm +++ b/code/game/machinery/doors/poddoor/almayer.dm @@ -22,11 +22,6 @@ icon_state = "almayer_pdoor1" base_icon_state = "almayer_pdoor" -/obj/structure/machinery/door/poddoor/almayer/blended/liaison - name = "\improper Room Divider" - id = "CLRoomDivider" - layer = 3.1 - /obj/structure/machinery/door/poddoor/almayer/blended/open density = FALSE @@ -42,6 +37,7 @@ desc = "A metal wall used to separate rooms and make up the ship." icon_state = "liaison_pdoor1" base_icon_state = "liaison_pdoor" + id = "CLRoomDivider" /obj/structure/machinery/door/poddoor/almayer/blended/liaison/open density = FALSE diff --git a/code/game/objects/structures/pipes/vents/pump_scrubber.dm b/code/game/objects/structures/pipes/vents/pump_scrubber.dm index acc8b4784af9..6b88826d9444 100644 --- a/code/game/objects/structures/pipes/vents/pump_scrubber.dm +++ b/code/game/objects/structures/pipes/vents/pump_scrubber.dm @@ -21,22 +21,34 @@ name = "Reinforced Air Vent" explodey = FALSE -/// Vents that are linked to ARES Security Protocols, allowing the ARES Interface to trigger security measures. /obj/structure/pipes/vents/pump/no_boom/gas name = "Security Air Vent" - var/datum/ares_link/link var/vent_tag COOLDOWN_DECLARE(vent_trigger_cooldown) + var/network_id /obj/structure/pipes/vents/pump/no_boom/gas/Initialize() - link_systems(override = FALSE) + GLOB.gas_vents += src . = ..() /obj/structure/pipes/vents/pump/no_boom/gas/Destroy() + GLOB.gas_vents -= src + return ..() + +/// Vents that are linked to ARES Security Protocols, allowing the ARES Interface to trigger security measures. +/obj/structure/pipes/vents/pump/no_boom/gas/ares + var/datum/ares_link/link + network_id = MAIN_AI_SYSTEM + +/obj/structure/pipes/vents/pump/no_boom/gas/ares/Initialize() + link_systems(override = FALSE) + . = ..() + +/obj/structure/pipes/vents/pump/no_boom/gas/ares/Destroy() delink() return ..() -/obj/structure/pipes/vents/pump/no_boom/gas/proc/link_systems(datum/ares_link/new_link = GLOB.ares_link, override) +/obj/structure/pipes/vents/pump/no_boom/gas/ares/proc/link_systems(datum/ares_link/new_link = GLOB.ares_link, override) if(link && !override) return FALSE delink() @@ -45,7 +57,7 @@ new_link.linked_vents += src return TRUE -/obj/structure/pipes/vents/pump/no_boom/gas/proc/delink() +/obj/structure/pipes/vents/pump/no_boom/gas/ares/proc/delink() if(link) link.linked_vents -= src link = null diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 21f5bc72a9fb..319025e25553 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -12256,7 +12256,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) "bMg" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ dir = 8; vent_tag = "Synth Bay" }, @@ -16481,12 +16481,12 @@ /area/almayer/hallways/upper/aft_hallway) "cNH" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - id = "Containment Cell 4"; + id = "CL_Containment"; name = "\improper Containment Cell 4" }, /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ dir = 1; - id = "Containment Cell 4"; + id = "CL_Containment"; locked = 1; name = "\improper Containment Cell 4" }, @@ -16987,7 +16987,7 @@ "cXF" = ( /obj/structure/machinery/flasher{ alpha = 1; - id = "Containment Cell 4"; + id = "CL_Containment"; layer = 2.1; name = "Mounted Flash"; pixel_x = -15; @@ -18199,7 +18199,11 @@ /obj/item/desk_bell{ anchored = 1; pixel_x = -8; - pixel_y = 8 + pixel_y = 9 + }, +/obj/structure/machinery/door_control/cl/office/evac{ + pixel_x = -5; + pixel_y = -3 }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) @@ -21074,14 +21078,6 @@ pixel_x = 2; pixel_y = 9 }, -/obj/structure/machinery/door_control/cl/office/window{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/structure/machinery/door_control/cl/office/door{ - pixel_x = 6; - pixel_y = -3 - }, /obj/item/spacecash/c500{ pixel_x = -10; pixel_y = 8 @@ -22406,28 +22402,15 @@ /area/almayer/maint/hull/upper/u_f_s) "fiE" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Containment Cell 4"; - name = "Control Panel"; - pixel_x = -17; - req_access_txt = "200"; - pixel_y = 9 - }, /obj/item/storage/photo_album, /obj/structure/machinery/computer/cameras/containment/hidden{ dir = 4; pixel_x = -17; - pixel_y = -5; plane = -5 }, /obj/item/device/camera_film{ pixel_x = -3 }, -/obj/structure/machinery/door_control/cl/office/divider{ - pixel_x = 7; - pixel_y = -7 - }, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) "fiQ" = ( @@ -22472,7 +22455,7 @@ }, /area/almayer/medical/containment/cell/cl) "flf" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ dir = 1; vent_tag = "Records" }, @@ -22590,8 +22573,10 @@ /turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) "fnH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 1; + vent_tag = "Main Office"; + network_id = "CL_Security" }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) @@ -23860,6 +23845,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/machinery/flasher{ + alpha = 1; + name = "Ceiling Flashbulb"; + range = 3; + layer = 2.1; + mouse_opacity = 0; + pixel_x = -14; + id = "CL_Security" + }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) "fRg" = ( @@ -40465,9 +40459,6 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) "mLe" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, /obj/structure/sign/safety/bathunisex{ pixel_x = 8; pixel_y = -32 @@ -40475,6 +40466,11 @@ /obj/structure/machinery/door_control/cl/quarter/backdoor{ pixel_x = 25 }, +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Private Quarters"; + network_id = "CL_Security" + }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) "mLg" = ( @@ -42664,7 +42660,7 @@ /obj/structure/bed/chair/comfy/ares{ dir = 1 }, -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ vent_tag = "Core Chamber" }, /turf/open/floor/almayer/no_build/plating, @@ -45079,7 +45075,7 @@ /turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "oBD" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ dir = 8; vent_tag = "Access Hall" }, @@ -45428,11 +45424,11 @@ pixel_y = 3 }, /obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/door_control/cl/office/evac{ +/obj/structure/machinery/door_control/cl/office/window{ pixel_x = -5; pixel_y = 4 }, -/obj/structure/machinery/door_control/cl/quarter/windows{ +/obj/structure/machinery/door_control/cl/office/door{ pixel_x = -5; pixel_y = -3 }, @@ -46419,7 +46415,7 @@ /area/almayer/shipboard/brig/cryo) "pax" = ( /obj/effect/step_trigger/clone_cleaner, -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ dir = 8; vent_tag = "Reception" }, @@ -52828,9 +52824,6 @@ /turf/open/floor/almayer/orange/east, /area/almayer/maint/upper/mess) "rGU" = ( -/obj/structure/machinery/computer/skills{ - req_one_access_txt = "200" - }, /obj/structure/surface/table/woodentable/fancy, /obj/item/tool/pen/clicky{ pixel_x = 14; @@ -52841,6 +52834,7 @@ pixel_x = 14; pixel_y = 6 }, +/obj/structure/machinery/computer/wy_intranet/liaison, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) "rHc" = ( @@ -67531,7 +67525,7 @@ /turf/open/floor/almayer/plate, /area/almayer/living/briefing) "xwU" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ dir = 1; vent_tag = "Comms" }, diff --git a/tgui/packages/tgui/interfaces/WYComputer.jsx b/tgui/packages/tgui/interfaces/WYComputer.jsx index 4df248eeaa94..90e98a6b2755 100644 --- a/tgui/packages/tgui/interfaces/WYComputer.jsx +++ b/tgui/packages/tgui/interfaces/WYComputer.jsx @@ -9,6 +9,7 @@ import { Window } from '../layouts'; const PAGES = { login: () => Login, main: () => MainMenu, + vents: () => SecVents, }; export const WYComputer = (props) => { @@ -106,8 +107,20 @@ const Login = (props) => { const MainMenu = (props) => { const { data, act } = useBackend(); - const { logged_in, access_text, last_page, current_menu, access_level } = - data; + const { + logged_in, + access_text, + last_page, + current_menu, + access_level, + has_hidden_cell, + has_room_divider, + open_divider, + open_cell_door, + open_cell_shutters, + cell_flash_cooldown, + sec_flash_cooldown, + } = data; return ( <> @@ -172,44 +185,195 @@ const MainMenu = (props) => { )} - {access_level >= 3 && ( + {(access_level === 3 || access_level >= 5) && (

Security Protocols

- - - act('unlock_divider')} - > - Room Divider - - - - - - + {!!has_room_divider && !has_hidden_cell && ( + act('unlock_divider')} + disabled={!has_room_divider} + > + Room Divider + + )} + act('security_flash')} + disabled={sec_flash_cooldown} + > + Security Flash + + {(access_level === 3 || access_level >= 6) && ( + + )} +
+ )} + {(access_level === 3 || access_level >= 6) && !!has_hidden_cell && ( +
+

Hidden Cell Controls

+ {!!has_room_divider && ( + act('unlock_divider')} + disabled={!has_room_divider} + > + Room Divider + + )} + + + act('cell_flash')} + disabled={cell_flash_cooldown} + > + Cell Flash +
)} ); }; + +const SecVents = (props) => { + const { data, act } = useBackend(); + const { + logged_in, + access_text, + access_level, + last_page, + current_menu, + security_vents, + } = data; + + return ( + <> +
+ + +
+ +
+

Security Vent Controls

+
+
+ {security_vents.map((vent, i) => { + return ( + act('trigger_vent', { vent: vent.ref })} + > + {vent.vent_tag} + + ); + })} +
+ + ); +}; From 127a76f2535ede305bf58b87e2e281350b4171fb Mon Sep 17 00:00:00 2001 From: forest2001 Date: Wed, 6 Nov 2024 19:18:45 +0000 Subject: [PATCH 03/13] oversight --- code/game/machinery/computer/wy_computer.dm | 4 ++-- tgui/packages/tgui/interfaces/WYComputer.jsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/computer/wy_computer.dm b/code/game/machinery/computer/wy_computer.dm index b508ec82a077..95cdf66f7b67 100644 --- a/code/game/machinery/computer/wy_computer.dm +++ b/code/game/machinery/computer/wy_computer.dm @@ -227,10 +227,10 @@ return WY_COMP_ACCESS_SENIOR_LEAD if(PAY_SHORT_WYC7, PAY_SHORT_WYC6) return WY_COMP_ACCESS_SUPERVISOR - if(PAY_SHORT_WYC5, PAY_SHORT_WYC4) - return WY_COMP_ACCESS_CORPORATE_SENIOR if(card.assignment == JOB_CORPORATE_LIAISON) return WY_COMP_ACCESS_LIAISON + if(card.paygrade && (card.paygrade == PAY_SHORT_WYC5 || card.paygrade == PAY_SHORT_WYC4)) + return WY_COMP_ACCESS_CORPORATE_SENIOR return WY_COMP_ACCESS_CORPORATE else return WY_COMP_ACCESS_FORBIDDEN diff --git a/tgui/packages/tgui/interfaces/WYComputer.jsx b/tgui/packages/tgui/interfaces/WYComputer.jsx index 90e98a6b2755..2e0925afb38f 100644 --- a/tgui/packages/tgui/interfaces/WYComputer.jsx +++ b/tgui/packages/tgui/interfaces/WYComputer.jsx @@ -235,7 +235,7 @@ const MainMenu = (props) => { )} )} - {(access_level === 3 || access_level >= 6) && !!has_hidden_cell && ( + {(access_level === 3 || access_level >= 5) && !!has_hidden_cell && (

Hidden Cell Controls

{!!has_room_divider && ( From 89f3bc9c82a963aea5e9f4bfe611553eff5de0eb Mon Sep 17 00:00:00 2001 From: forest2001 Date: Thu, 7 Nov 2024 15:48:24 +0000 Subject: [PATCH 04/13] biometrics --- code/game/machinery/computer/wy_computer.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/game/machinery/computer/wy_computer.dm b/code/game/machinery/computer/wy_computer.dm index 95cdf66f7b67..63a45051657a 100644 --- a/code/game/machinery/computer/wy_computer.dm +++ b/code/game/machinery/computer/wy_computer.dm @@ -141,6 +141,9 @@ var/mob/living/carbon/human/human_user = user var/obj/item/card/id/idcard = human_user.get_active_hand() if(istype(idcard)) + if(!idcard.check_biometrics(human_user)) + to_chat(human_user, SPAN_WARNING("ERROR: Biometric identification failure. You must use your own ID card during login procedures.")) + return FALSE authentication = get_wy_access(idcard) last_login = idcard.registered_name else if(human_user.wear_id) From 130208f436cbeb3cfef7d6fa6ae061bbcf7d0214 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Mon, 11 Nov 2024 14:07:54 +0000 Subject: [PATCH 05/13] map reset --- maps/map_files/USS_Almayer/USS_Almayer.dmm | 80 ++++++++++++---------- 1 file changed, 44 insertions(+), 36 deletions(-) diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index feb133789ea2..2fd225b922dd 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -13160,6 +13160,14 @@ pixel_x = 2; pixel_y = 9 }, +/obj/structure/machinery/door_control/cl/office/window{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/machinery/door_control/cl/office/door{ + pixel_x = 6; + pixel_y = -3 + }, /obj/item/spacecash/c500{ pixel_x = -10; pixel_y = 8 @@ -24561,7 +24569,7 @@ /obj/structure/bed/chair/comfy/ares{ dir = 1 }, -/obj/structure/pipes/vents/pump/no_boom/gas/ares{ +/obj/structure/pipes/vents/pump/no_boom/gas{ vent_tag = "Core Chamber" }, /turf/open/floor/almayer/no_build/plating, @@ -25313,7 +25321,7 @@ /turf/open/floor/almayer/mono, /area/almayer/lifeboat_pumps/south1) "gFz" = ( -/obj/structure/pipes/vents/pump/no_boom/gas/ares{ +/obj/structure/pipes/vents/pump/no_boom/gas{ dir = 1; vent_tag = "Records" }, @@ -31525,7 +31533,7 @@ "jiH" = ( /obj/structure/machinery/flasher{ alpha = 1; - id = "CL_Containment"; + id = "Containment Cell 4"; layer = 2.1; name = "Mounted Flash"; pixel_x = -15; @@ -32408,6 +32416,9 @@ }, /area/almayer/medical/containment/cell) "jCe" = ( +/obj/structure/machinery/computer/skills{ + req_one_access_txt = "200" + }, /obj/structure/surface/table/woodentable/fancy, /obj/item/tool/pen/clicky{ pixel_x = 14; @@ -32418,7 +32429,6 @@ pixel_x = 14; pixel_y = 6 }, -/obj/structure/machinery/computer/wy_intranet/liaison, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) "jCg" = ( @@ -35678,11 +35688,7 @@ /obj/item/desk_bell{ anchored = 1; pixel_x = -8; - pixel_y = 9 - }, -/obj/structure/machinery/door_control/cl/office/evac{ - pixel_x = -5; - pixel_y = -3 + pixel_y = 8 }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) @@ -35710,7 +35716,7 @@ /turf/open/floor/almayer/tcomms, /area/almayer/command/telecomms) "kTC" = ( -/obj/structure/pipes/vents/pump/no_boom/gas/ares{ +/obj/structure/pipes/vents/pump/no_boom/gas{ dir = 8; vent_tag = "Access Hall" }, @@ -36371,7 +36377,7 @@ /turf/open/floor/plating, /area/almayer/living/grunt_rnr) "lhH" = ( -/obj/structure/pipes/vents/pump/no_boom/gas/ares{ +/obj/structure/pipes/vents/pump/no_boom/gas{ dir = 1; vent_tag = "Comms" }, @@ -36418,6 +36424,9 @@ /turf/open/floor/almayer, /area/almayer/command/computerlab) "liM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, /obj/structure/sign/safety/bathunisex{ pixel_x = 8; pixel_y = -32 @@ -36425,11 +36434,6 @@ /obj/structure/machinery/door_control/cl/quarter/backdoor{ pixel_x = 25 }, -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 8; - vent_tag = "Private Quarters"; - network_id = "CL_Security" - }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) "liY" = ( @@ -40535,10 +40539,8 @@ /turf/open/floor/almayer/test_floor4, /area/almayer/maint/upper/mess) "mWp" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 1; - vent_tag = "Main Office"; - network_id = "CL_Security" +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) @@ -42427,7 +42429,9 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) "nGD" = ( -/obj/structure/machinery/door/poddoor/almayer/blended/liaison, +/obj/structure/machinery/door/poddoor/almayer/blended/liaison{ + id = "RoomDivider" + }, /turf/open/floor/almayer/plate, /area/almayer/command/corporateliaison) "nGM" = ( @@ -42446,12 +42450,12 @@ /area/almayer/lifeboat_pumps/north2) "nHp" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - id = "CL_Containment"; + id = "Containment Cell 4"; name = "\improper Containment Cell 4" }, /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ dir = 1; - id = "CL_Containment"; + id = "Containment Cell 4"; locked = 1; name = "\improper Containment Cell 4" }, @@ -43801,15 +43805,28 @@ /area/almayer/engineering/lower) "ojp" = ( /obj/structure/surface/table/almayer, +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Containment Cell 4"; + name = "Control Panel"; + pixel_x = -17; + req_access_txt = "200"; + pixel_y = 9 + }, /obj/item/storage/photo_album, /obj/structure/machinery/computer/cameras/containment/hidden{ dir = 4; pixel_x = -17; + pixel_y = -5; plane = -5 }, /obj/item/device/camera_film{ pixel_x = -3 }, +/obj/structure/machinery/door_control/cl/office/divider{ + pixel_x = 7; + pixel_y = -7 + }, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) "ojF" = ( @@ -47449,7 +47466,7 @@ /area/almayer/maint/upper/u_a_s) "pJX" = ( /obj/effect/step_trigger/clone_cleaner, -/obj/structure/pipes/vents/pump/no_boom/gas/ares{ +/obj/structure/pipes/vents/pump/no_boom/gas{ dir = 8; vent_tag = "Reception" }, @@ -48503,15 +48520,6 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/flasher{ - alpha = 1; - name = "Ceiling Flashbulb"; - range = 3; - layer = 2.1; - mouse_opacity = 0; - pixel_x = -14; - id = "CL_Security" - }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) "qfQ" = ( @@ -55859,11 +55867,11 @@ pixel_y = 3 }, /obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/door_control/cl/office/window{ +/obj/structure/machinery/door_control/cl/office/evac{ pixel_x = -5; pixel_y = 4 }, -/obj/structure/machinery/door_control/cl/office/door{ +/obj/structure/machinery/door_control/cl/quarter/windows{ pixel_x = -5; pixel_y = -3 }, @@ -68781,7 +68789,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/upper/midship_hallway) "yen" = ( -/obj/structure/pipes/vents/pump/no_boom/gas/ares{ +/obj/structure/pipes/vents/pump/no_boom/gas{ dir = 8; vent_tag = "Synth Bay" }, From b2b47d3993fd7c411e15d786d8d0d7baa36dbce7 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Mon, 11 Nov 2024 14:09:03 +0000 Subject: [PATCH 06/13] WHY IS RESETTING CHANGES A FUCKING BITCH EVERY SINGLE TIME --- maps/map_files/USS_Almayer/USS_Almayer.dmm | 129989 ------------------ 1 file changed, 129989 deletions(-) delete mode 100644 maps/map_files/USS_Almayer/USS_Almayer.dmm diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm deleted file mode 100644 index 2fd225b922dd..000000000000 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ /dev/null @@ -1,129989 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space, -/area/space) -"aab" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "tele_ground1"; - teleport_x = 180; - teleport_x_offset = 200; - teleport_y = 50; - teleport_y_offset = 80; - teleport_z = 1; - teleport_z_offset = 1 - }, -/turf/open/space, -/area/space) -"aac" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northwest, -/area/space) -"aad" = ( -/turf/open/floor/almayer_hull/outerhull_dir/north, -/area/space) -"aae" = ( -/turf/open/floor/almayer_hull/outerhull_dir/northeast, -/area/space) -"aaf" = ( -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/space) -"aag" = ( -/turf/open/floor/almayer_hull, -/area/space) -"aah" = ( -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space) -"aak" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "tele_ground1"; - teleport_x = 180; - teleport_x_offset = 200; - teleport_y = 50; - teleport_y_offset = 80; - teleport_z = 1; - teleport_z_offset = 1 - }, -/turf/open/space/basic, -/area/space) -"aam" = ( -/obj/structure/stairs, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"aaq" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/item/clothing/head/helmet/marine/tech{ - layer = 4.1; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/mob/living/simple_animal/mouse/brown{ - name = "rat" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"aau" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/pilotbunks) -"aaC" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"aaE" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"aaF" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"aaH" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/stair_clone/upper) -"aaP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "\improper Brig Armoury"; - req_access = null; - req_one_access_txt = "1;3" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"aaY" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"aba" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-3"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"abf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"abh" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/north2) -"abi" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/north2) -"abj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"abk" = ( -/obj/structure/window/reinforced/toughened, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"abn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"abs" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/north1) -"abw" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/north1) -"abB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"abE" = ( -/turf/closed/wall/almayer, -/area/almayer/living/basketball) -"abF" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"abG" = ( -/obj/structure/filingcabinet/security, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"abH" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"abK" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"abR" = ( -/obj/item/tank/phoron, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"abS" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"abT" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"abU" = ( -/obj/structure/machinery/computer/aa_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"acc" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"acd" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/sprays, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"acf" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/living/starboard_garden) -"aci" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"acj" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/barricade/handrail/wire{ - dir = 8 - }, -/obj/structure/holohoop{ - dir = 4; - id = "basketball"; - side = "left" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"ack" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"acl" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acm" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/barricade/handrail/wire{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"aco" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"acp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"acq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"acr" = ( -/obj/structure/orbital_cannon{ - density = 0 - }, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"acs" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/obj/structure/machinery/light/built, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"acu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/vending/cola, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"acv" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/living/starboard_garden) -"acx" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/north2) -"acy" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"acz" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"acA" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"acI" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acK" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acL" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"acM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"acN" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/weapon_room) -"acQ" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"acS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -29 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"acU" = ( -/obj/structure/closet/basketball, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"acW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"acX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"acY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"acZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/effect/landmark/map_item, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"add" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"ade" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"adj" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"adq" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/north1) -"adr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"adu" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"adC" = ( -/obj/structure/surface/rack, -/obj/item/stock_parts/manipulator/nano{ - pixel_y = -9 - }, -/obj/item/stock_parts/scanning_module/adv{ - pixel_x = 4; - pixel_y = 15 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"adD" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"adF" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/basketball) -"adG" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/starboard_missiles) -"adO" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/starboard_atmos) -"adP" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"adR" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "\improper Pilot's Office"; - req_one_access_txt = "3;22;19" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"aea" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aec" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north1) -"aed" = ( -/obj/structure/machinery/scoreboard_button{ - id = "basketball"; - name = "Scoreboard Reset Button"; - pixel_x = -20 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/basketball) -"aee" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north1) -"aef" = ( -/turf/open/floor/almayer, -/area/almayer/living/basketball) -"aeh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"aei" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"aej" = ( -/turf/closed/wall/almayer, -/area/almayer/living/officer_study) -"ael" = ( -/turf/closed/wall/almayer, -/area/almayer/living/cafeteria_officer) -"aep" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/airmix) -"aer" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"aet" = ( -/turf/closed/wall/almayer, -/area/almayer/living/starboard_garden) -"aex" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"aez" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"aeA" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"aeB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"aeC" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"aeE" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/shipboard/starboard_missiles) -"aeG" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/basketball) -"aeH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/basketball) -"aeI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"aeJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"aeK" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"aeL" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"aeM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"aeN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"aeO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"aeP" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"aeQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/structure/machinery/computer/emails, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"aeR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"aeT" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"aeW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aeX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aeY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"aeZ" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"afa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"afb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/transmitter{ - dir = 4; - name = "Starboard Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Starboard Railgun Control"; - pixel_x = -26 - }, -/obj/item/device/binoculars, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"afj" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"afk" = ( -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"afm" = ( -/turf/open/floor/almayer_hull/outerhull_dir/southeast, -/area/space) -"afr" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"afs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/basketball) -"afy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"afE" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"afF" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"afG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"afH" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"afI" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"afJ" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"afK" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"afL" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"afM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"afN" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/starboard_atmos) -"afO" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"afP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/starboard_atmos) -"afQ" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/starboard_atmos) -"afT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_missiles) -"afX" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"afZ" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"agb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/bloodsoup{ - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"agc" = ( -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"agf" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"agj" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/commandbunks) -"agq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"agr" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"ags" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer/plate, -/area/almayer/living/officer_study) -"agu" = ( -/turf/open/floor/almayer, -/area/almayer/living/officer_study) -"agv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - access_modified = 1; - dir = 2; - name = "\improper Requisitions Break Room"; - req_one_access_txt = "19;21" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"agA" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/basketball) -"agH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar/tarbacks, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"agI" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/officer_study) -"agK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/officer_study) -"agM" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Waste Air Injector" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"agO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"agQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cafeteria_officer) -"agT" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"agV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"agY" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"ahc" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/wy_mre, -/obj/item/storage/box/wy_mre, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"ahe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"ahf" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"ahh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/starboard_atmos) -"ahi" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"aho" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/offices/flight) -"ahy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/closed/wall/almayer, -/area/almayer/living/starboard_garden) -"ahz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"ahG" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/starboard_atmos) -"ahJ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/starboard_atmos) -"ahL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ahN" = ( -/obj/structure/flora/bush/ausbushes/var3/ywflowers, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"ahR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"ahS" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"ahV" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/offices/flight) -"aia" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/officer_study) -"aic" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"aid" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Study" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"aie" = ( -/obj/effect/landmark/railgun_computer, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"aig" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"aih" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - dir = 2; - name = "\improper Officer's Cafeteria" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cafeteria_officer) -"aij" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cafeteria_officer) -"ain" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cafeteria_officer) -"aiq" = ( -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"air" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/cafeteria_officer) -"ais" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/offices/flight) -"aiw" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/starboard_atmos) -"aiH" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"aiJ" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"aiQ" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"aiR" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"aiW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"aiX" = ( -/turf/closed/wall/almayer, -/area/almayer/living/pilotbunks) -"aiZ" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"aje" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ajj" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"ajk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajl" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/upper_medical) -"ajm" = ( -/obj/structure/closet/secure_closet/securecom, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"ajs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"aju" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ajA" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"ajD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ajE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ajH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ajI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"ajM" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/living/offices/flight) -"ajT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ajV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ajY" = ( -/turf/open/floor/almayer_hull/outerhull_dir/southwest, -/area/space) -"ajZ" = ( -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"aka" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north1) -"akb" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"akc" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north1) -"akf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/weapon_room) -"akh" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/hallways/upper/midship_hallway) -"akn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/hallways/lower/vehiclehangar) -"ako" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"akt" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"aku" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar/tarbacktube, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilottex{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"akv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/tool/crowbar, -/obj/item/clothing/head/helmet/marine/pilot{ - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/device/camera{ - pixel_x = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"akw" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"akx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null; - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"akz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"akA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"akC" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/starboard_missiles) -"akE" = ( -/obj/structure/machinery/door_control{ - id = "or2privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"akL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = 8; - pixel_y = 24; - req_access_txt = "31" - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"akQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"ald" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"alf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"alg" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"alh" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"alk" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 1"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple, -/area/almayer/medical/containment/cell) -"alp" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"alw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Pilot's Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"aly" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/starboard_missiles) -"alD" = ( -/obj/item/paper_bin/uscm{ - pixel_y = 6; - pixel_x = 7 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"alE" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"alL" = ( -/turf/closed/wall/almayer, -/area/almayer/command/telecomms) -"alO" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/upper_engineering) -"alR" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"alU" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/navigation) -"alW" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"alX" = ( -/turf/open/floor/almayer, -/area/almayer/command/cic) -"alZ" = ( -/turf/open/floor/almayer/red, -/area/almayer/command/cic) -"amb" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"amd" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"amg" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"amh" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"amk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/containment) -"amo" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ams" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"amu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"amw" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering) -"amx" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"amz" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/starboard_missiles) -"amA" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"amE" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/surface/rack, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"amF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"amH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"amI" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"amM" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/engineering/port_atmos) -"amX" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"amY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"ana" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"and" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"ang" = ( -/obj/item/clothing/head/welding{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"anm" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"anp" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/gm/grass/grass1, -/area/almayer/medical/upper_medical) -"anq" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"anr" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/sign/safety/terminal{ - pixel_x = 3; - pixel_y = 29 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"ans" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"anw" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 1"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"anz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"anM" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"anO" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"anP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"anU" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"anV" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"anW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"aoa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"aoe" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/morgue) -"aog" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"aoh" = ( -/obj/structure/morgue/crematorium, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"aoi" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"aom" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"aop" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/upper_medical) -"aoq" = ( -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"aor" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"aos" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/upper_medical) -"aov" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"aoy" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aoz" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"aoA" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"aoC" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aoI" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"aoJ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 1"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"aoK" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_display/research_cell{ - dir = 1; - id = "Containment Cell 5"; - name = "Cell 5 Control"; - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 5"; - name = "Containment Lockdown"; - pixel_x = -8; - pixel_y = -3; - req_one_access_txt = "19;28" - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"aoL" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"aoM" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"aoN" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"aoP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"aoT" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"aoW" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aoX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"apa" = ( -/obj/structure/surface/rack, -/obj/item/tool/screwdriver, -/obj/item/device/analyzer, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"ape" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"apg" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"api" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"apk" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"apo" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"apq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"aps" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"apt" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"apz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "northcheckpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"apB" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/wrapped/booniebars, -/obj/item/reagent_container/food/snacks/wrapped/booniebars{ - pixel_y = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"apE" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/hangar) -"apL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"apR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"apS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = 15 - }, -/obj/item/device/camera{ - pixel_x = -3; - pixel_y = 22 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"apU" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 2"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"apW" = ( -/obj/structure/machinery/telecomms/server/presets/common, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"apX" = ( -/obj/structure/machinery/telecomms/server/presets/medical, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"apY" = ( -/obj/structure/machinery/telecomms/server/presets/engineering, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"apZ" = ( -/obj/structure/machinery/telecomms/receiver/preset_left, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/radio_rad{ - pixel_x = 16; - pixel_y = 32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"aqa" = ( -/obj/structure/machinery/telecomms/receiver/preset, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"aqb" = ( -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"aqf" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"aqg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"aqh" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"aqm" = ( -/obj/item/bedsheet/brown, -/obj/structure/bed, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"aqn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"aqo" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/offices) -"aqp" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"aqq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"aqs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"aqu" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"aqw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"aqy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"aqz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"aqB" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"aqF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cic) -"aqG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/medical_science) -"aqH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"aqI" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/auxiliary_officer_office) -"aqJ" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"aqK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"aqL" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"aqN" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aqP" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 1"; - locked = 1; - name = "\improper Containment Cell 1" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 1"; - name = "\improper Containment Cell 1"; - unacidable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"aqS" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"aqU" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/airoom) -"aqV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"aqY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering) -"aqZ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_stern) -"arb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"arg" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"arh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"ari" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/item/storage/pouch/tools, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"arj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/device/radio/headset, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"ark" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"arl" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"arm" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"arp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"arq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"arr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"ars" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"ary" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door_control{ - access_modified = 1; - id = "OTStore"; - name = "Shutters"; - pixel_y = -24; - req_one_access_txt = "35" - }, -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"arz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"arA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"arF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"arG" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"arH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"arK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"arP" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"arR" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"arT" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"arV" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"arX" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"asc" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"ase" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"asf" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"asm" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"asn" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"asr" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"asu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -10; - pixel_y = -27 - }, -/obj/structure/closet/secure_closet/professor_dummy{ - pixel_y = -30 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"asw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"asA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"asE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"asH" = ( -/obj/structure/machinery/telecomms/bus/preset_three, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"asI" = ( -/obj/structure/machinery/telecomms/bus/preset_two, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"asJ" = ( -/obj/structure/machinery/telecomms/bus/preset_four, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"asK" = ( -/obj/structure/machinery/telecomms/bus/preset_one, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"asL" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 4 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"asM" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"asN" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"asQ" = ( -/obj/structure/surface/rack, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/folded_tent/cmd, -/obj/item/flag/plantable/ua, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"asR" = ( -/turf/open/floor/almayer/orange, -/area/almayer/command/cic) -"asT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"asU" = ( -/obj/item/device/flashlight/lamp{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/device/flash, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"asX" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"asZ" = ( -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"ata" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/ladder{ - height = 2; - id = "cicladder1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"atb" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder2" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"atc" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"atf" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"atg" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"atk" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "tcomms_apc"; - name = "\improper Telecommunications Power Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"atm" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"atn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"ato" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"atq" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"atr" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ats" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"att" = ( -/obj/structure/surface/table/almayer, -/obj/item/stock_parts/matter_bin, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/cell/high, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"atu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"atv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"atx" = ( -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"aty" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"atz" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"atH" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"atJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"atK" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/lifeboat) -"atM" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/lifeboat) -"atN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"atO" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"atP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"atS" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"atT" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"auc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" - }, -/obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"auf" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"aui" = ( -/obj/structure/machinery/telecomms/hub/preset, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"auj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"aum" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"auu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"auy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"auA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"auB" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"auH" = ( -/obj/structure/machinery/door_control{ - id = "tcomms_apc"; - name = "Telecommuncation Power"; - pixel_x = -25 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"auL" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"auO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"auQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/cic) -"auS" = ( -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/item/tool/warning_cone, -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"auT" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/command/cic) -"auU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"auV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"auW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/port_point_defense) -"auX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"auZ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"ava" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"avd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"avl" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform/metal/almayer/west, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"avo" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/powered/agent) -"avp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"avs" = ( -/turf/closed/wall/biodome, -/area/almayer/powered/agent) -"avu" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"avv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"avw" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/weapon_room) -"avx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"avB" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/navigation) -"avC" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered/agent) -"avF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/containment) -"avG" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/containment) -"avH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"avJ" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-5"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"avN" = ( -/obj/structure/machinery/telecomms/processor/preset_two, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"avO" = ( -/obj/structure/machinery/telecomms/processor/preset_three, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"avP" = ( -/obj/structure/machinery/telecomms/processor/preset_four, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"avQ" = ( -/obj/structure/machinery/telecomms/processor/preset_one, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"avR" = ( -/obj/structure/machinery/telecomms/relay/preset/telecomms{ - listening_level = 6 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"avS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/cic) -"avU" = ( -/obj/effect/landmark/start/crew_chief, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"avV" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/bed/chair, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"avW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/storage/box/masks{ - pixel_x = 5 - }, -/obj/structure/closet/secure_closet/surgical{ - pixel_y = 30 - }, -/obj/item/reagent_container/glass/minitank{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"avY" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"avZ" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"awa" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"awd" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/pilotbunks) -"awe" = ( -/turf/open/floor/plating/almayer, -/area/almayer/living/starboard_garden) -"awi" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"awj" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/gm/grass/grass1, -/area/almayer/medical/upper_medical) -"awk" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"awm" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/cic) -"awn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"awp" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"awq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"awt" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cic) -"awu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"awv" = ( -/obj/structure/machinery/computer/telecomms/monitor, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"awx" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/command/telecomms) -"awy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"awz" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/cichallway) -"awA" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - name = "weapon targetting computer" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"awB" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"awC" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/port_missiles) -"awD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"awE" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"awF" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/numbertwobunks) -"awG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"awH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/obj/item/device/megaphone, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 8; - layer = 2.99; - name = "brig cameras console"; - pixel_x = 17; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"awQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/device/multitool{ - pixel_x = 8 - }, -/obj/item/tool/screwdriver{ - pixel_x = -3; - pixel_y = 4 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"awR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"awS" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "officers_mess"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/captain_mess) -"awW" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"awX" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"awZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_x = 8; - pixel_y = 12 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"axa" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"axc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 - }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"axe" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"axk" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/weapon_room) -"axl" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - name = "\improper CMO's Office"; - req_one_access = null; - req_one_access_txt = "1;5" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"axm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"axn" = ( -/obj/structure/sign/safety/rewire{ - layer = 2.4; - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"axo" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/telecomms) -"axp" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cic) -"axu" = ( -/obj/structure/machinery/computer/telecomms/server, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"axw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"axx" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"axy" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"axA" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/pen/blue, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"axB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"axD" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"axE" = ( -/obj/structure/closet/toolcloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"axI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"axL" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"axM" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"axN" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"axO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"axQ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"axR" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"axV" = ( -/obj/structure/machinery/telecomms/server/presets/command, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"axW" = ( -/obj/structure/machinery/telecomms/server/presets/security, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"axX" = ( -/obj/structure/machinery/telecomms/server/presets/squads, -/obj/structure/sign/safety/commline_connection{ - pixel_y = -32 - }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"axY" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"aya" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering) -"ayb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"aye" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"ayi" = ( -/obj/structure/machinery/recharger, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"ayj" = ( -/obj/effect/landmark/start/cargo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"ayl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"ayo" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"ayq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"ayr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17; - pixel_y = 8 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 8; - pixel_x = 17; - pixel_y = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ays" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cic) -"ayu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"ayv" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"ayw" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/navigation) -"ayz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/command/cic) -"ayD" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"ayI" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = -4 - }, -/obj/item/clothing/glasses/welding{ - pixel_y = 6 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"ayK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"ayL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"ayM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"ayV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"ayW" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/morgue) -"ayX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/structure/sign/catclock{ - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"ayZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"aza" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"azc" = ( -/obj/structure/machinery/computer/telecomms/traffic, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"azd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/command/telecomms) -"aze" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering) -"azg" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"azh" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"azi" = ( -/obj/effect/spawner/random/tool, -/obj/structure/surface/rack, -/obj/item/cell/high, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"azl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/offices/flight) -"azo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"azp" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"azq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"azr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"azs" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"azt" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"azw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"azy" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"azA" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"azC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"azD" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"azJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - req_one_access_txt = "3;19;22" - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"azL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"azU" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"azW" = ( -/obj/structure/machinery/door/window/westright{ - dir = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"azZ" = ( -/obj/structure/machinery/keycard_auth, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aAd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aAf" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"aAj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cic) -"aAn" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"aAq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"aAr" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/surface/rack, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/obj/item/storage/box/botanydisk, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"aAy" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"aAA" = ( -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/command/cic) -"aAB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/groundside_operations{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aAC" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aAE" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aAF" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel" - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aAK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"aAL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_x = -1; - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"aAP" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "cic_exterior"; - name = "CIC Door Control"; - normaldoorcontrol = 1; - pixel_y = -14; - req_one_access_txt = "19" - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aAT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"aAU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"aAZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/structure/pipes/vents/pump/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"aBb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"aBc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"aBd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"aBe" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 2"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"aBf" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - name = "Telecommunications"; - req_access_txt = "6" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"aBh" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBi" = ( -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/tool/pen, -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aBk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"aBm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aBn" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBp" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aBr" = ( -/obj/structure/ladder{ - height = 2; - id = "engineeringladder" - }, -/turf/open/floor/plating/almayer, -/area/almayer/engineering/upper_engineering) -"aBs" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"aBt" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/device/radio/marine{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"aBu" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/command/lifeboat) -"aBw" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/storage/box/cups, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"aBx" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aBz" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random, -/obj/item/folder/black_random, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"aBA" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/command/lifeboat) -"aBD" = ( -/obj/structure/closet/basketball, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"aBE" = ( -/obj/structure/bed/sofa/vert/grey, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aBG" = ( -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/command/lifeboat) -"aBH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aBI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aBP" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = list(36) - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/synthcloset) -"aBR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/glass, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/item/device/whistle, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"aBS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/cic) -"aBW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"aBX" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"aBZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4; - layer = 2.99; - pixel_y = 4 - }, -/obj/structure/machinery/computer/almayer_control{ - dir = 4; - layer = 2.99; - pixel_y = 26 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aCa" = ( -/obj/structure/machinery/door/window/westright{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aCb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/obj/structure/window/reinforced/toughened, -/obj/structure/machinery/computer/crew/alt{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aCd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"aCf" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/command/cic) -"aCj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aCk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cic) -"aCo" = ( -/turf/open/gm/grass/grass1, -/area/almayer/medical/upper_medical) -"aCt" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"aCu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"aCw" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"aCA" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"aCC" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"aCD" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 4; - pixel_x = -16 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"aCJ" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"aCR" = ( -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_y = 28; - req_one_access_txt = "28" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"aCX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"aCZ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/computerlab) -"aDa" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"aDb" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/command/telecomms) -"aDe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"aDh" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"aDi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door/window/westright, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aDj" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering) -"aDm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"aDn" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"aDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"aDr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"aDs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"aDt" = ( -/obj/structure/machinery/cm_vending/clothing/military_police_warden, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"aDv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aDB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"aDC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"aDD" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering) -"aDE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"aDH" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aDK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"aDO" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/command/lifeboat) -"aDQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/lifeboat) -"aDS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"aDU" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/obj/item/tool/minihoe{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -4 - }, -/obj/item/tool/wirecutters/clippers{ - pixel_y = -2 - }, -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/grunt_rnr) -"aDX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"aEe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"aEf" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"aEg" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/command/lifeboat) -"aEi" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"aEj" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/helmet/marine/pilot, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"aEm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"aEo" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"aEr" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"aEA" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"aEB" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"aEC" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aED" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"aEG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cic) -"aEM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"aEN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"aEO" = ( -/obj/structure/machinery/light/double/blue{ - light_color = "#a7dbc7" - }, -/turf/open/gm/grass/grass1, -/area/almayer/medical/upper_medical) -"aEQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"aES" = ( -/turf/closed/wall/almayer, -/area/almayer/living/bridgebunks) -"aET" = ( -/turf/closed/wall/almayer, -/area/almayer/living/captain_mess) -"aEW" = ( -/turf/closed/wall/almayer, -/area/almayer/living/numbertwobunks) -"aEZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/gloves{ - pixel_x = -4; - pixel_y = 13 - }, -/obj/item/storage/box/masks{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"aFa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"aFe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"aFf" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"aFg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/briefcase, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"aFh" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"aFi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"aFl" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"aFm" = ( -/obj/structure/surface/table/almayer, -/obj/item/shard, -/obj/item/tool/extinguisher, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aFn" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aFr" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aFt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"aFu" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aFv" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/circuitboard/apc, -/obj/item/tool/screwdriver, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aFw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aFy" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aFz" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/yellow, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aFA" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"aFB" = ( -/obj/structure/closet/toolcloset, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"aFD" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"aFG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"aFI" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aGa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"aGb" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"aGg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_four) -"aGj" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"aGk" = ( -/obj/structure/machinery/door_control{ - id = "ARES Operations Left"; - name = "ARES Operations Shutter"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"aGm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"aGn" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"aGp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aGq" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/command/cic) -"aGr" = ( -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aGs" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"aGv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"aGz" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/port_atmos) -"aGA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"aGH" = ( -/obj/structure/machinery/computer/ordercomp, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aGN" = ( -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"aGP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"aGQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"aGS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"aGV" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"aGW" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/morgue) -"aGX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"aGY" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"aGZ" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/numbertwobunks) -"aHa" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/morgue) -"aHe" = ( -/turf/closed/wall/almayer, -/area/almayer/command/lifeboat) -"aHl" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aHn" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westleft, -/obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/numbertwobunks) -"aHq" = ( -/turf/closed/wall/almayer, -/area/almayer/command/computerlab) -"aHr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"aHs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"aHu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ - id = "engie_store" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"aHv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - no_panel = 1; - req_one_access = null; - req_one_access_txt = "2;7"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ - id = "engie_store" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"aHw" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering Lounge" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"aHK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aHM" = ( -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"aHR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"aHS" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Mixed Air Injector" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aHX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/numbertwobunks) -"aHY" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/starboard_missiles) -"aHZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"aId" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"aIf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aIh" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"aIl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"aIo" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"aIq" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"aIx" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aIy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"aIB" = ( -/obj/structure/flora/bush/ausbushes/var3/fullgrass, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aIC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/transmitter/rotary{ - name = "Researcher Office Telephone"; - phone_category = "Almayer"; - phone_id = "Research"; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_container/glass/beaker/large{ - pixel_x = -6 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"aID" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"aIP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/containment) -"aIQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - access_modified = 1; - name = "\improper XO's Quarters"; - req_access = null; - req_access_txt = "1" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/numbertwobunks) -"aIT" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 2; - name = "Telecommunications"; - req_access_txt = "6" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"aIU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"aIV" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"aIX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"aIY" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"aJc" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Commanding Officer's Mess" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/captain_mess) -"aJf" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aJg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"aJh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering) -"aJi" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"aJj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"aJk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"aJl" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"aJn" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/containment) -"aJp" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/command/cichallway) -"aJq" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 28 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"aJw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"aJG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/command/cic) -"aJI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"aJJ" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/obj/structure/bed/chair, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aJU" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"aKa" = ( -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"aKf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"aKg" = ( -/obj/structure/flora/bush/ausbushes/var3/brflowers, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"aKi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"aKk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"aKn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"aKo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"aKq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"aKs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - explo_proof = 1; - name = "ARES Chamber Lockdown"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door_control{ - id = "ARES Railing"; - explo_proof = 1; - name = "ARES Chamber Railings"; - needs_power = 0; - pixel_x = 24; - req_one_access_txt = "91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4.1; - density = 0; - dir = 2; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - pixel_x = -1; - pixel_y = -1; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"aKu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"aKv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aKy" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"aKz" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"aKE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"aKF" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"aKG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"aKH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"aKN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/accessory/red, -/obj/item/clothing/head/bowlerhat{ - pixel_x = 3; - pixel_y = 10 - }, -/obj/item/clothing/suit/storage/webbing, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"aKO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/item/storage/fancy/cigarettes/lady_finger{ - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"aKQ" = ( -/turf/closed/wall/almayer/outer, -/area/space) -"aKR" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/starboard_point_defense) -"aKS" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"aKU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"aKV" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"aLc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"aLp" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"aLx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_x = -7; - pixel_y = -26; - req_one_access_txt = "3;22;2;19;7" - }, -/obj/structure/surface/rack, -/obj/item/parachute{ - pixel_y = 8 - }, -/obj/item/parachute, -/obj/item/parachute{ - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/hallways/lower/repair_bay) -"aLE" = ( -/obj/docking_port/stationary/emergency_response/external/hangar_starboard{ - dwidth = 8 - }, -/turf/open/space, -/area/space) -"aLJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"aLL" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/starboard_point_defense) -"aLM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"aLS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/circular_saw, -/obj/item/tool/surgery/retractor, -/obj/item/tool/surgery/cautery, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"aLT" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/alpha) -"aLW" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"aLZ" = ( -/obj/structure/bed/sofa/south/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"aMd" = ( -/obj/structure/filingcabinet/seeds{ - density = 0; - pixel_x = 5; - pixel_y = 16 - }, -/obj/structure/filingcabinet/disk{ - density = 0; - pixel_x = -11; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"aMf" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"aMg" = ( -/obj/structure/sign/safety/intercom{ - layer = 2.9; - pixel_x = -6; - pixel_y = 29 - }, -/obj/structure/machinery/botany/extractor{ - density = 0; - pixel_x = 15; - pixel_y = 16 - }, -/obj/item/device/flashlight/pen{ - pixel_x = 14; - pixel_y = 15 - }, -/obj/structure/machinery/vending/hydroseeds{ - density = 0; - pixel_x = -7; - pixel_y = 16; - req_access_txt = "28" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"aMl" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"aMm" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/crowbar, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"aMo" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"aMq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter/random, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aMt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"aMw" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aMx" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"aMy" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) -"aMz" = ( -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"aMB" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"aMC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"aMD" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/toy/deck, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"aME" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/airmix) -"aMG" = ( -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"aMH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/landmark/start/marine/smartgunner/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aMI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/marine/spec/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"aML" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"aMO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"aMP" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/squads/alpha) -"aMQ" = ( -/obj/structure/machinery/cm_vending/clothing/tl/alpha{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aMT" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"aMU" = ( -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"aMY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"aNc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"aNi" = ( -/turf/closed/wall/almayer, -/area/almayer/living/chapel) -"aNl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aNm" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"aNr" = ( -/obj/effect/landmark/start/chef, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"aNs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"aNx" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"aNE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) -"aNI" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"aNO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"aNQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aNT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"aNW" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/starboard_hallway) -"aNY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"aOd" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/containment) -"aOe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"aOq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"aOr" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"aOs" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"aOt" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"aOy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"aOz" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/squads/alpha) -"aOB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"aOC" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"aOF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"aOG" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aOH" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aOK" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"aOL" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"aOM" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"aON" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"aOQ" = ( -/obj/structure/closet/crate, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"aOR" = ( -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"aOS" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_a_s) -"aOV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"aOW" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/donkpockets, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/cans/souto/peach{ - pixel_x = 12 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"aPa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"aPe" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"aPf" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"aPg" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"aPi" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"aPj" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"aPl" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"aPn" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"aPo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"aPr" = ( -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"aPw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/command/lifeboat) -"aPx" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D2"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"aPz" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"aPB" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/command/cic) -"aPC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"aPD" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"aPE" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"aPH" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"aPI" = ( -/turf/open/floor/almayer/blue, -/area/almayer/command/cic) -"aPJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/corner2, -/area/almayer/medical/containment/cell) -"aPK" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/alpha) -"aPN" = ( -/obj/structure/ladder{ - height = 2; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/s_bow) -"aPO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"aPS" = ( -/obj/structure/machinery/power/port_gen/pacman, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"aPT" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"aPU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"aPV" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"aQb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"aQg" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/command/cic) -"aQp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"aQq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"aQr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"aQx" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "hypersleep curtain" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"aQy" = ( -/obj/structure/transmitter{ - dir = 8; - name = "RO Office Telephone"; - phone_category = "Offices"; - phone_id = "RO Office"; - pixel_x = 16 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"aQz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"aQF" = ( -/turf/closed/wall/almayer, -/area/almayer/living/offices) -"aQG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"aQH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"aQL" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/bravo) -"aQM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/engineering_guide{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"aQN" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/bravo) -"aQT" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"aQW" = ( -/obj/structure/machinery/vending/cola{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"aQZ" = ( -/obj/structure/machinery/botany/editor{ - density = 0; - pixel_x = 5; - pixel_y = 16 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 5; - pixel_y = 24 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"aRd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/window/westright{ - dir = 4; - req_access_txt = "28" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "researchlockdownext_windoor"; - name = "\improper Research Windoor Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"aRi" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"aRj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"aRo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"aRq" = ( -/obj/structure/closet/secure_closet/staff_officer/gear, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"aRt" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/command/cic) -"aRu" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"aRv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"aRx" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"aRy" = ( -/turf/open/floor/almayer, -/area/almayer/living/offices) -"aRA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"aRB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/toastedsandwich{ - pixel_y = 5 - }, -/obj/structure/sign/poster{ - icon_state = "poster8"; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"aRC" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"aRE" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"aRF" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/upper_medical) -"aRJ" = ( -/obj/structure/ladder{ - height = 2; - id = "med1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 - }, -/obj/structure/sign/safety/refridgeration{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/upper_medical) -"aRK" = ( -/obj/structure/ladder{ - height = 2; - id = "med2" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/upper_medical) -"aRL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/port_midship_hallway) -"aRP" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/squads/bravo) -"aRS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"aRT" = ( -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"aRU" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"aRX" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"aRZ" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/squads/bravo) -"aSa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"aSb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/upper_medical) -"aSk" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"aSn" = ( -/obj/item/stack/sheet/mineral/plastic{ - amount = 15 - }, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"aSo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"aSp" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"aSq" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"aSt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda/beer, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"aSx" = ( -/obj/structure/machinery/vending/dinnerware, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"aSA" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"aSE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"aSH" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/squads/bravo) -"aSI" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"aSJ" = ( -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"aSO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_two) -"aTa" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aTg" = ( -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"aTj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"aTk" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"aTl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"aTm" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"aTn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/offices) -"aTr" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/offices) -"aTv" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/bravo) -"aTw" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"aTx" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"aTy" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"aTz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"aTA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -1 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -8 - }, -/obj/item/tool/kitchen/utensil/knife{ - pixel_x = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"aTB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"aTE" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"aTG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"aTT" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"aTW" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"aTY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"aTZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"aUd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Officer's Bunks"; - req_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/port_atmos) -"aUe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cichallway) -"aUi" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"aUj" = ( -/obj/structure/machinery/cm_vending/clothing/tl/bravo{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"aUk" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"aUl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"aUm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"aUo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"aUp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/donut_box, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"aUq" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"aUw" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"aUB" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"aUC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/tofukabob, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/obj/item/reagent_container/food/snacks/tofubreadslice, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"aUH" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/port_atmos) -"aUL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/cigbutt, -/obj/item/ashtray/glass, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"aUM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/offices) -"aUY" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"aUZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"aVd" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"aVf" = ( -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"aVg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"aVi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"aVk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"aVm" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/starboard_hallway) -"aVo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/portable_atmospherics/canister/empty, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aVr" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/structure/sign/safety/fridge{ - pixel_x = 32 - }, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"aVC" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"aVF" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/cargo, -/area/almayer/command/telecomms) -"aVG" = ( -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/cichallway) -"aVH" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"aVI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 5 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"aVK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"aVL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"aVM" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"aVR" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"aVU" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"aVV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"aVW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"aVX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Officer's Quarters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"aWb" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = 8 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "engie_store"; - name = "Emergency Storage"; - pixel_x = -2; - pixel_y = 26; - req_one_access_txt = "6" - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_x = -17; - pixel_y = -6 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/ce_room) -"aWc" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"aWg" = ( -/obj/structure/machinery/door_control{ - id = "CMP Office Shutters"; - name = "CMP Office Shutters"; - pixel_y = 32; - req_one_access_txt = "24;31" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_y = 24; - req_access_txt = "3" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) -"aWk" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"aWm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"aWn" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"aWo" = ( -/obj/structure/pipes/unary/outlet_injector, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aWp" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - id_tag = "waste_lower_out" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"aWq" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"aWt" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"aWu" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"aWw" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/gym) -"aWz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"aWD" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/offices) -"aWE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"aWF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"aWM" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/upper/fore_hallway) -"aWT" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"aWV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aWW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aWZ" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/airmix) -"aXb" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aXc" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = 6; - pixel_y = 4 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = -9; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"aXe" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"aXh" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aXj" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aXx" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/port_atmos) -"aXA" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/engineering/port_atmos) -"aXD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"aYd" = ( -/obj/structure/dropship_equipment/medevac_system, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"aYt" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"aYu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aYz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"aYC" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"aYH" = ( -/obj/structure/safe/cl_office, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"aYQ" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_one) -"aYR" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"aZe" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"aZf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"aZr" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"aZs" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"aZv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) -"aZy" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"aZz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"aZC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"aZF" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/stair_clone/upper) -"aZI" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"aZK" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"aZL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aZO" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aZP" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aZQ" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aZR" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aZV" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aZW" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aZX" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aZY" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"aZZ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"baf" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"bag" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"baw" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"baG" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"baH" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"baI" = ( -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"baJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"baM" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"baN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"baR" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"baS" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"baW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"baX" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"baZ" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/lower_medical_lobby) -"bba" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"bbd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_one) -"bbe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"bbf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bbi" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/medical) -"bbr" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"bbs" = ( -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"bbu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"bby" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"bbz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"bbA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"bbS" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/starboard_point_defense) -"bbV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"bbY" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bbZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"bca" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bcb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bcc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bcd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bcg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/bed/sofa/south/white/left{ - pixel_y = 16 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/maint/upper/u_m_p) -"bcm" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/hangar) -"bco" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bcp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bct" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/maint/upper/u_a_p) -"bcw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bcx" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bcz" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"bcA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"bcC" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/obj/structure/sign/safety/ref_chem_storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"bcD" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/chemistry) -"bcE" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bcH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"bcK" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/chemistry) -"bcL" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_one) -"bcM" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"bcP" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"bcR" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"bcS" = ( -/obj/structure/machinery/door_control{ - id = "or1privacyshutter"; - name = "Privacy Shutters"; - pixel_y = 25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"bcV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"bcZ" = ( -/obj/structure/machinery/chem_dispenser/corpsman{ - pixel_y = 3 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"bda" = ( -/obj/structure/machinery/door_control{ - id = "or02"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_two) -"bdd" = ( -/turf/closed/wall/almayer, -/area/almayer/living/briefing) -"bdg" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"bdj" = ( -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bdk" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"bdl" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"bdm" = ( -/obj/structure/machinery/door_control{ - id = "crate_room"; - name = "storage shutters"; - pixel_x = -25; - pixel_y = -1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bdr" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bds" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bdv" = ( -/obj/structure/machinery/cm_vending/clothing/leader/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bdw" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/cryo_cells) -"bdy" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"bdz" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"bdA" = ( -/obj/structure/machinery/cm_vending/clothing/medic/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bdC" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bdD" = ( -/obj/structure/machinery/cm_vending/clothing/engi/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bdH" = ( -/turf/open/space/basic, -/area/space) -"bdI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bdJ" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bdK" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bdL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bdM" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bdO" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bdU" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bdV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bdY" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"bea" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"beg" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bei" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"bej" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"ben" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"bep" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"ber" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "north_central_checkpoint"; - name = "North Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bet" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/chemistry) -"bev" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"bew" = ( -/obj/structure/machinery/chem_dispenser/corpsman{ - pixel_y = 3 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"bez" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_one) -"beH" = ( -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"beL" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"beN" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -25 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"beP" = ( -/obj/item/stack/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/almayer, -/area/almayer/squads/alpha_bravo_shared) -"beQ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"beR" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"beS" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"beT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"beU" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"beV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/marine/leader/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"beW" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"bfd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"bfe" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"bfl" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/cryo_cells) -"bfm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/cryo_cells) -"bfn" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"bfo" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/cryo_cells) -"bfs" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/l_f_s) -"bft" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bfu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/squads/alpha) -"bfw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"bfx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"bfy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bfz" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"bfC" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"bfD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"bfE" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"bfJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/handheld1, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bfK" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_closed, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bfL" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bfO" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"bfV" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bfY" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_open, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bfZ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bgj" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bgk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/chemistry) -"bgl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"bgm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"bgn" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_two) -"bgr" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"bgs" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_two) -"bgt" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_two) -"bgu" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/chemistry) -"bgv" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or01"; - name = "Operating Theatre 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_one) -"bgw" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "or2privacyshutter"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/medical/operating_room_two) -"bgy" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or02"; - name = "Operating Theatre 2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_two) -"bgz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"bgA" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"bgC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_one) -"bgK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"bgM" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/upper/midship_hallway) -"bgN" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"bgO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"bgP" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"bgR" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"bgU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"bgW" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"bgY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"bhf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/telecomms/broadcaster/preset_left, -/obj/structure/sign/safety/laser{ - pixel_y = 32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"bhg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"bho" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"bhq" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"bhx" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"bhy" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"bhG" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bhH" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"bhI" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"bhJ" = ( -/obj/structure/machinery/cm_vending/clothing/staff_officer{ - density = 0; - pixel_x = -30 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"bhR" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"bhT" = ( -/obj/structure/cargo_container/lockmart/mid{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bhU" = ( -/obj/structure/cargo_container/lockmart/right{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bhV" = ( -/obj/structure/ladder/fragile_almayer{ - height = 2; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"biq" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/item/reagent_container/glass/beaker, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/chemistry) -"biu" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Chemistry Laboratory"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/chemistry) -"biy" = ( -/obj/structure/pipes/unary/freezer, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"biA" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_three) -"biC" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/access_button/airlock_exterior, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"biF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/roller/surgical, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/folded_tent/med{ - pixel_x = -8; - pixel_y = 14 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"biJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"biV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/starboard_garden) -"bjg" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"bjk" = ( -/obj/structure/machinery/door_control{ - id = "perma_lockdown_2"; - name = "Maint Lockdown Shutters"; - pixel_y = -20; - req_one_access_txt = "24;31" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -34 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"bjs" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"bjt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"bju" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"bjv" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"bjA" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"bjD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"bjQ" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"bjR" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bjS" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bjZ" = ( -/obj/structure/machinery/cm_vending/clothing/marine/snowflake, -/turf/open/floor/almayer/cargo, -/area/almayer/living/gym) -"bkb" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"bkd" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bkg" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"bkh" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bko" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bks" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bky" = ( -/obj/structure/machinery/cryo_cell, -/obj/structure/pipes/standard/cap/hidden, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"bkz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Nurse Office"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lockerroom) -"bkA" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/chemistry) -"bkE" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "or1privacyshutter"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/medical/operating_room_one) -"bkM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/maint/upper/u_m_p) -"bkN" = ( -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/item/device/healthanalyzer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"bkS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"bkT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"bkU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/late_join, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/start/senior, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"blf" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"bli" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 6"; - name = "Cell 6" - }, -/obj/structure/sign/safety/six{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"blj" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"bll" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"bln" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 3; - pixel_y = 27 - }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"blp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter/zippo, -/obj/item/toy/dice/d20, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/dice{ - pixel_x = 10; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"blq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"bls" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/basketball) -"blw" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/lighter, -/obj/structure/machinery/faxmachine/uscm, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"blA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"blB" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"blJ" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"blZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lockerroom) -"bmb" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"bmc" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or03"; - name = "Operating Theatre 3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_three) -"bmd" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - id_tag = "or04"; - name = "Operating Theatre 4" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/operating_room_four) -"bmh" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"bmi" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_three) -"bmj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_three) -"bmk" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_four) -"bml" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"bmn" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_lobby) -"bmp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"bmr" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"bmv" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"bmz" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = 10 - }, -/obj/item/reagent_container/food/snacks/hotchili, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"bmB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/squads/req) -"bmC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-y" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bmD" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"bmF" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"bmO" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"bmW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"bmX" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"bng" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_x = 17; - pixel_y = 16 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/offices) -"bni" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bnj" = ( -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/chemistry) -"bno" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"bnp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/squads/bravo) -"bnr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"bnt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"bnu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"bny" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"bnA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"bnB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"bnH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/tool/warning_cone, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bnI" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_lobby) -"bnR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"bnS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/megaphone, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"bnT" = ( -/obj/structure/machinery/door_control{ - id = "or03"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_three) -"bnX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"bnZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"bof" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"boh" = ( -/obj/structure/machinery/door_control{ - id = "or04"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_four) -"bom" = ( -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = 8 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"bop" = ( -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering/port) -"boq" = ( -/obj/structure/bed/chair/comfy/alpha, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"bos" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) -"boy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"boz" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"boA" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/req) -"boB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"boV" = ( -/obj/structure/cargo_container/wy/left, -/obj/structure/prop/almayer/minigun_crate{ - pixel_x = 1; - pixel_y = 39 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"boX" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"boY" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"bpa" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"bpd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_missiles) -"bpe" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"bpj" = ( -/obj/structure/dropship_equipment/fulton_system, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"bpo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/regular, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"bpv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "south_central_checkpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bpw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"bpz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"bpA" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"bpC" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"bpG" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"bpH" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"bpI" = ( -/obj/structure/closet/secure_closet/fridge/dry/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"bpK" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"bpL" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"bpQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bpR" = ( -/turf/open/floor/almayer/empty/requisitions, -/area/supply/station) -"bpS" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bpT" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"bpV" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"bqa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/device/autopsy_scanner, -/obj/item/tool/surgery/scalpel, -/obj/item/tool/surgery/hemostat, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"bqc" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bqg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"bqF" = ( -/obj/structure/dropship_equipment/fuel/fuel_enhancer, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"bqH" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"bqL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"bqN" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lockerroom) -"bqR" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"bqT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"bqW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/head/cmcap{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/item/ammo_box/magazine/misc/mre{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/prop/helmetgarb/helmet_nvg/cosmetic{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"bqY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"bqZ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bra" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"brb" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"brf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/starboard_missiles) -"bri" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/req) -"brj" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"brn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"brp" = ( -/obj/structure/supply_drop/bravo, -/turf/open/floor/plating, -/area/almayer/squads/req) -"brq" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"brr" = ( -/obj/structure/machinery/cm_vending/clothing/medic/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"brs" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"brt" = ( -/obj/structure/machinery/cm_vending/clothing/engi/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"brv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"bry" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"brA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"brH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"brS" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"brW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"brY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bsg" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"bsj" = ( -/obj/structure/machinery/line_nexter/med{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"bsp" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"bst" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_one) -"bsw" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/chapel) -"bsy" = ( -/obj/structure/closet/medical_wall{ - pixel_x = 30 - }, -/obj/item/reagent_container/food/drinks/cans/souto/blue, -/obj/item/reagent_container/food/drinks/cans/souto/blue, -/obj/item/reagent_container/food/drinks/cans/souto/classic, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"bsz" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"bsD" = ( -/obj/structure/closet{ - name = "boxing attire" - }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/green, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/grey, -/obj/item/clothing/under/shorts/grey, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"bsF" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"bsG" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/cryo_cells) -"bsJ" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/req) -"bsK" = ( -/obj/effect/landmark/supply_elevator, -/turf/open/floor/almayer/empty/requisitions, -/area/supply/station) -"bsL" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/almayer/squads/req) -"bsN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"bsP" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"bsQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_three) -"bsR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"bsS" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"bsU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/squads/alpha) -"bsW" = ( -/obj/structure/machinery/cm_vending/clothing/leader/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"btb" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_a_s) -"btc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha) -"bti" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/intel{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/computerlab) -"btr" = ( -/obj/structure/closet/boxinggloves, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"btv" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"btx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"btC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"btD" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"btG" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"btM" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"btN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"btO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"btV" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"btX" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_three) -"btY" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) -"buc" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"bui" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_one) -"buj" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_one) -"bur" = ( -/obj/structure/prop/almayer/missile_tube, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_missiles) -"buu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"buv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"buz" = ( -/obj/structure/supply_drop/charlie, -/turf/open/floor/plating, -/area/almayer/squads/req) -"buB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"buM" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"buN" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"buO" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"buS" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"buY" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"bvb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"bve" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bvf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bvr" = ( -/obj/structure/bed/chair/office/dark, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bvz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_one) -"bvD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/lower/port_fore_hallway) -"bvF" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"bvH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/tool/hand_labeler{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"bvX" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/window, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"bwc" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"bwe" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bwf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bwg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/squads/alpha) -"bwh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"bwl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bwm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bwn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bwv" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"bww" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bwG" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"bwH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"bwP" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bwR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = -4 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lockerroom) -"bwT" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"bxf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"bxg" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bxh" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "supply_elevator_railing" - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/req) -"bxi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/mono, -/area/almayer/squads/req) -"bxm" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"bxn" = ( -/obj/structure/target, -/turf/open/floor/almayer/redfull, -/area/almayer/living/cryo_cells) -"bxA" = ( -/obj/structure/machinery/power/apc/almayer/hardened/south, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"bxB" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"bxC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"bxE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"bxN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"bxY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"byb" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"byc" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_three) -"byd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_four) -"bye" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or4privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"bym" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"byn" = ( -/obj/effect/landmark/start/marine/leader/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"byr" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"byt" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"byu" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"byv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"byw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"bzg" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"bzo" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"bzz" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"bzD" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "tcomms" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/telecomms) -"bzI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"bzQ" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bzR" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -18 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"bzS" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"bAd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/squads/alpha) -"bAe" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/command/lifeboat) -"bAh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bAi" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bAs" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/weapon_room) -"bAu" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper High Security Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/securestorage) -"bAy" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"bAH" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"bAJ" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"bAK" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/weapon_room) -"bAN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bAO" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bAP" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bAQ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bAS" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bAU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bAY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"bAZ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"bBd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"bBe" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"bBg" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"bBl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"bBu" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bBv" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bBx" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bBy" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bBz" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bBA" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/weapon_room) -"bBC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"bBD" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/surface/table/almayer, -/obj/structure/transmitter/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office Second Line"; - pixel_x = -5; - pixel_y = 3 - }, -/obj/structure/transmitter/rotary{ - name = "Telephone"; - phone_category = "Almayer"; - phone_id = "Auxiliary Support Office"; - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"bBF" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"bBH" = ( -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"bBN" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bBQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "southcheckpoint"; - name = "South Checkpoint Shutters"; - req_one_access_txt = "3;12;19" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bBR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bBU" = ( -/obj/structure/sign/safety/security{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"bBY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bCd" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_lobby) -"bCe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_lobby) -"bCg" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bCh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"bCi" = ( -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"bCk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"bCl" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"bCm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"bCn" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"bCs" = ( -/obj/docking_port/stationary/escape_pod/cl, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"bCu" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"bCv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"bCx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Briefing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"bCy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"bCz" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"bCA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bCB" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"bCD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"bCG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"bCM" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"bCN" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"bCP" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"bCR" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"bCS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"bCY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"bCZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"bDn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/closed/wall/almayer, -/area/almayer/hallways/hangar) -"bDs" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"bDv" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"bDF" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - unacidable = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room/notunnel) -"bDH" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bDI" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bDL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Combat Support Secondary Preparations"; - req_one_access_txt = "19;27;22" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"bDO" = ( -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"bDP" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"bDQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bDS" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bDT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bDU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"bDV" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bDW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"bDX" = ( -/obj/structure/closet/crate, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/industrial, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bDY" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/medium_stack{ - amount = 40; - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/stack/sheet/plasteel/small_stack{ - amount = 15 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bDZ" = ( -/obj/structure/closet/crate/internals, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bEa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/living/cryo_cells) -"bEb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/living/cryo_cells) -"bEc" = ( -/obj/structure/machinery/computer/supplycomp, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bEd" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/cryo_cells) -"bEg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bEh" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/storage/backpack/marine, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"bEi" = ( -/obj/structure/supply_drop/alpha, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"bEk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bEl" = ( -/obj/structure/machinery/computer/supply_drop_console/limited, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"bEm" = ( -/obj/structure/supply_drop/delta, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"bEp" = ( -/obj/structure/filingcabinet, -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/squads/req) -"bEr" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bEs" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bEv" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/shipboard/brig/general_equipment) -"bEw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"bEx" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"bEA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bEF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/weapon_room) -"bEG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"bEN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bEO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bEP" = ( -/obj/item/device/radio/marine{ - pixel_x = 6 - }, -/obj/item/device/radio/marine{ - pixel_x = 3 - }, -/obj/item/device/radio/marine, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"bER" = ( -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - layer = 3.2; - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/storage/box/gloves{ - layer = 3.1; - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box/masks{ - layer = 3.1; - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/storage/box/masks{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"bES" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"bFa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"bFg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"bFj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"bFk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"bFl" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"bFp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"bFq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silverfull, -/area/almayer/living/cryo_cells) -"bFr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"bFs" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/cryo_cells) -"bFt" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"bFA" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"bFB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bFC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"bFJ" = ( -/obj/docking_port/stationary/marine_dropship/almayer_hangar_2, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"bFP" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bFR" = ( -/obj/docking_port/stationary/marine_dropship/almayer_hangar_1, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"bFX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"bGa" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) -"bGc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/command/lifeboat) -"bGn" = ( -/obj/structure/barricade/plasteel/metal, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"bGo" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby1"; - name = "\improper RO Line 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/turf/open/floor/plating, -/area/almayer/squads/req) -"bGq" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bGw" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bGy" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"bGz" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"bGF" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGG" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGH" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGI" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/prop/almayer/hangar_stencil, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGK" = ( -/obj/item/tool/warning_cone, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGM" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGN" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGO" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGP" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGQ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGR" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bGU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bHg" = ( -/obj/structure/bed, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"bHk" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell/cl) -"bHp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"bHq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"bHu" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"bHB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bHD" = ( -/obj/structure/dropship_equipment/weapon/launch_bay, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"bHG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"bHI" = ( -/obj/structure/anti_air_cannon, -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bHP" = ( -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bId" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"bIe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bIj" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/hallways/lower/port_midship_hallway) -"bIn" = ( -/obj/structure/machinery/computer/cameras/almayer_network, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"bIo" = ( -/obj/structure/cargo_container/lockmart/left{ - layer = 3.1; - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bIp" = ( -/obj/effect/step_trigger/ares_alert/mainframe, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Mainframe Left"; - name = "\improper ARES Mainframe Shutters"; - plane = -7 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"bIs" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bIw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/computer/working_joe, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"bIx" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"bIy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/navigation) -"bIJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/chef_recipes, -/obj/item/reagent_container/food/condiment/sugar{ - pixel_x = 10 - }, -/obj/item/clothing/head/chefhat, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"bIM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"bIO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/lower/port_fore_hallway) -"bIU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"bIW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"bJe" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_2"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"bJf" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"bJl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Auxiliary Support Officers Quarters"; - req_one_access_txt = "37" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"bJt" = ( -/turf/closed/wall/almayer, -/area/almayer/living/grunt_rnr) -"bJw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"bJC" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/charlie) -"bJD" = ( -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"bJE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/squads/bravo) -"bJH" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black{ - pixel_x = -4 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = 10; - pixel_y = 22 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"bJS" = ( -/obj/structure/surface/rack, -/obj/item/tool/wrench, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bJT" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bJU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"bJX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bJY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bJZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"bKb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Particle Cannon Systems Room"; - req_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"bKd" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/item/storage/firstaid/fire, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"bKf" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"bKk" = ( -/obj/item/tool/wrench{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"bKm" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"bKn" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/weapon_room) -"bKp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"bKq" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"bKs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bKt" = ( -/obj/structure/cargo_container/arious/left, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bKu" = ( -/obj/structure/cargo_container/arious/mid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bKz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bKA" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bKC" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"bKD" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"bKI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/starboard_hallway) -"bKJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/cryo_cells) -"bKM" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"bKP" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"bKQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bKX" = ( -/obj/structure/machinery/chem_dispenser/corpsman{ - pixel_y = 3 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"bLc" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"bLf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"bLh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bLi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bLj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"bLk" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/weapon_room) -"bLl" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"bLm" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"bLo" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"bLp" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"bLq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/navigation) -"bLr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"bLs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bLw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"bLx" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "oxygen_lower_out" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bLy" = ( -/turf/open/floor/engine/nitrogen, -/area/almayer/engineering/airmix) -"bLz" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "nit_lower_out" - }, -/turf/open/floor/engine/nitrogen, -/area/almayer/engineering/airmix) -"bLA" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 1 - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bLC" = ( -/obj/structure/pipes/vents/pump/siphon/on{ - dir = 1; - id_tag = "mixed_lower_out" - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bLD" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bLF" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_n"; - name = "\improper Brig" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"bLH" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/weapon_room) -"bLJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"bLO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"bLP" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"bLX" = ( -/obj/vehicle/powerloader, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bMa" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"bMf" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bMq" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"bMu" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"bMx" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"bMy" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"bMA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"bMC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror{ - pixel_x = -32 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/squads/charlie) -"bMD" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"bME" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"bMJ" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bMK" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/nitrogen, -/area/almayer/engineering/airmix) -"bML" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"bMO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"bMP" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bMR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"bMS" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/red, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"bMT" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/sign/safety/twilight_zone_terminator{ - pixel_x = 8; - pixel_y = -24 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"bMU" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/blue, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"bMZ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"bNa" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"bNb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) -"bNe" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"bNf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bNg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"bNh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/living/port_emb) -"bNi" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"bNk" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) -"bNl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/almayer, -/area/almayer/shipboard/weapon_room) -"bNm" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/weapon_room) -"bNn" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"bNo" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"bNq" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"bNr" = ( -/obj/structure/sign/safety/storage{ - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bNs" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bNt" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"bNw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/kitchen/knife, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"bNA" = ( -/obj/structure/machinery/computer/ordercomp, -/obj/structure/sign/safety/galley{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bNB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/wy_mre, -/obj/effect/spawner/random/tool, -/obj/item/tool/hand_labeler, -/obj/item/clipboard, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bNC" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"bNE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"bNF" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/squads/charlie) -"bNG" = ( -/obj/structure/machinery/cm_vending/clothing/tl/charlie{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"bNL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"bNM" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"bNN" = ( -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"bNP" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bNQ" = ( -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"bNS" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/navigation) -"bOq" = ( -/obj/structure/prop/almayer/cannon_cables, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"bOs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/weapon_room) -"bOw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"bOx" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"bOC" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"bOG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"bOJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Briefing Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"bOK" = ( -/obj/structure/machinery/door_control{ - id = "ROlobby1"; - name = "RO Line 1 Shutters"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/line_nexter_control{ - id = "line1"; - pixel_x = -4; - pixel_y = -2; - req_one_access_txt = "1;21" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bOM" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bON" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bOO" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bOQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; - pixel_y = 17 - }, -/obj/item/facepaint/green{ - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"bOR" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"bOT" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/gear/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"bOZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/squads/charlie) -"bPa" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/squads/charlie) -"bPg" = ( -/obj/vehicle/powerloader, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/shipboard/weapon_room) -"bPh" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"bPi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"bPk" = ( -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"bPn" = ( -/obj/structure/machinery/computer/orbital_cannon_console, -/obj/structure/bed/chair/ob_chair, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"bPo" = ( -/obj/structure/prop/almayer/cannon_cable_connector, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"bPq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"bPr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"bPs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"bPu" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/lower_medical_medbay) -"bPz" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"bPC" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/weapon_room) -"bPD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bPF" = ( -/turf/closed/wall/almayer/white/outer_tile, -/area/almayer/medical/medical_science) -"bPG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"bPH" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) -"bPJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"bPL" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"bPM" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/living/cryo_cells) -"bPO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/observer_start, -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/living/briefing) -"bQc" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 6"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"bQt" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"bQw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"bQz" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"bQA" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"bQD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"bQE" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"bQG" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black, -/obj/item/book/manual/orbital_cannon_manual, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"bQI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"bQM" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"bQQ" = ( -/obj/structure/sign/ROsign{ - layer = 3 - }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"bQS" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"bQU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"bQX" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bQZ" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/charlie) -"bRa" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/living/cryo_cells) -"bRc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"bRe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bRf" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"bRg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"bRo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"bRt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_umbilical) -"bRO" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"bRP" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"bRV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"bSa" = ( -/obj/structure/target, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"bSb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"bSe" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/squads/bravo) -"bSf" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/port_point_defense) -"bSn" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/squads/bravo) -"bSv" = ( -/turf/closed/wall/almayer, -/area/almayer/living/tankerbunks) -"bSC" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"bSD" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"bSH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"bSJ" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/delta) -"bSK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/tool/wrench, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"bSL" = ( -/obj/structure/sign/nosmoking_1, -/turf/closed/wall/almayer, -/area/almayer/squads/delta) -"bSN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"bSR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bST" = ( -/obj/structure/closet/secure_closet/hydroresearch, -/obj/item/reagent_container/glass/watertank, -/obj/item/reagent_container/glass/watertank, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"bSZ" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"bTa" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"bTb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/turf/open/floor/plating, -/area/almayer/squads/bravo) -"bTg" = ( -/obj/docking_port/stationary/emergency_response/external/hangar_port{ - dwidth = 8 - }, -/turf/open/space, -/area/space) -"bTn" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/tankerbunks) -"bTq" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PL-3"; - req_access = null - }, -/turf/open/floor/plating, -/area/almayer/powered) -"bTt" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = 21 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -2; - pixel_y = -4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"bTx" = ( -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"bTy" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/squads/delta) -"bTz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"bTA" = ( -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"bTC" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"bTE" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/squads/delta) -"bTG" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"bTH" = ( -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"bTJ" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"bTM" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"bTN" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"bTO" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/port_point_defense) -"bTR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"bTS" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"bTT" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/shipboard/weapon_room) -"bTU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/dogtag{ - desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." - }, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"bTV" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"bTW" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"bTY" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"bUa" = ( -/obj/structure/closet, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"bUb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"bUf" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"bUi" = ( -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"bUn" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/ashtray/bronze{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/structure/machinery/door_control/cl/office/window{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/structure/machinery/door_control/cl/office/door{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/item/spacecash/c500{ - pixel_x = -10; - pixel_y = 8 - }, -/obj/item/paper_bin/wy{ - pixel_x = 17; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"bUo" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = -32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/req) -"bUp" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"bUq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"bUr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"bUy" = ( -/obj/structure/closet/crate/ammo, -/obj/structure/machinery/light/small, -/obj/item/ammo_box/magazine/empty, -/obj/item/ammo_box/magazine/empty, -/obj/structure/machinery/door_control{ - id = "crate_room3"; - name = "storage shutters"; - pixel_x = -26 - }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"bUH" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"bUN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"bUO" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"bUQ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"bUT" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"bUU" = ( -/obj/structure/machinery/cm_vending/clothing/tl/delta{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"bVb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"bVd" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"bVe" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"bVn" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"bVo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"bVq" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"bVs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"bVv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"bVw" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/briefing) -"bVy" = ( -/obj/structure/machinery/chem_dispenser/corpsman{ - pixel_y = 3 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"bVE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"bVM" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bVN" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"bVR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"bVU" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/port_point_defense) -"bWc" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"bWd" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"bWe" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"bWf" = ( -/obj/structure/machinery/light, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"bWg" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"bWh" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-4"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"bWi" = ( -/obj/structure/bed/sofa/south/white/left, -/obj/structure/platform/metal/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"bWn" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"bWo" = ( -/obj/docking_port/stationary/emergency_response/port2, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"bWp" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"bWq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"bWr" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"bWJ" = ( -/obj/structure/machinery/shower{ - dir = 4 - }, -/obj/structure/machinery/door/window/eastright, -/obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"bWL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bWQ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"bWT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/co2_knife{ - pixel_x = 8; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"bXc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"bXe" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"bXf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"bXh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"bXo" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge1" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"bXw" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_two) -"bXy" = ( -/obj/structure/machinery/cm_vending/clothing/maintenance_technician, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"bXz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"bXH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"bXY" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 24; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"bYa" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"bYn" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/upper_engineering/port) -"bYq" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bYu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"bYv" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - name = "\improper Requisitions Storage" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"bYw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"bYz" = ( -/obj/structure/sign/safety/south{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"bYF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"bYL" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"bYW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/panic) -"bYY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"bZa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"bZc" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"bZe" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"bZf" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"bZi" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bZj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"bZn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"bZo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bZr" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/squads/req) -"bZw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) -"bZJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/landmark/map_item, -/obj/item/device/binoculars, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"bZO" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"bZR" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"bZS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/lower/repair_bay) -"bZU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"cab" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"cac" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"cad" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"cae" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"caf" = ( -/obj/structure/machinery/computer/cryopod{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"cag" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"cah" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"cai" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"cak" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/evidence_storage) -"cal" = ( -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"caq" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"car" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"cau" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/cryo_cells) -"caM" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"caN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"caO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/briefing) -"caS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_three) -"caT" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) -"cbg" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2; - name = "\improper Command Ladder" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"cbh" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"cbm" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"cbn" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/command/computerlab) -"cbu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"cbF" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - pixel_x = 1; - pixel_y = 17; - req_access = null - }, -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"cbL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"cbM" = ( -/obj/structure/closet/crate, -/obj/item/clothing/glasses/welding, -/obj/item/circuitboard, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ccb" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/red/north, -/area/almayer/living/cryo_cells) -"ccd" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/northeast, -/area/almayer/living/cryo_cells) -"ccg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"cck" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"ccs" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"ccx" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"ccG" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ccL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"ccN" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/living/cryo_cells) -"ccQ" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"cdf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"cdm" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"cdn" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"cdo" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/cryo_cells) -"cdp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"cdA" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"cdB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"cdI" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"cdP" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie) -"cdT" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cdU" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cdV" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cdX" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cdZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) -"cea" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"ceg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"ceC" = ( -/obj/structure/prop/almayer/ship_memorial, -/turf/open/floor/plating/almayer, -/area/almayer/living/starboard_garden) -"ceD" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-3"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"ceE" = ( -/turf/closed/wall/almayer, -/area/almayer/command/cichallway) -"ceK" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"ceV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/upper/midship_hallway) -"ceY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"ceZ" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/shipboard/brig/cic_hallway) -"cfk" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"cfm" = ( -/obj/structure/flora/pottedplant{ - desc = "Life is underwhelming, especially when you're a potted plant."; - icon_state = "pottedplant_22"; - name = "Jerry"; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses/prescription{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"cfo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"cfp" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cfq" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cft" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"cfE" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/starboard_missiles) -"cfT" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"cgl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"cgo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie_delta_shared) -"cgq" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"cgr" = ( -/obj/structure/machinery/cm_vending/clothing/medic/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cgs" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cgt" = ( -/obj/structure/machinery/cm_vending/clothing/engi/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cgu" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cgv" = ( -/obj/structure/machinery/cm_vending/clothing/leader/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cgy" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"cgA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cgE" = ( -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"cgO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"cgT" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"cgU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"chb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) -"chc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/body_scanconsole{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"chf" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"chk" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"chl" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"chm" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"chn" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"chp" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"chq" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"chv" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"chL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/squads/bravo) -"chM" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"chN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"chO" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"chP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"chQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/squads/charlie) -"chR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"chS" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"chV" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"chW" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"cib" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"cic" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/alpha) -"cif" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"cil" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"cir" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"civ" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering) -"cix" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-4"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"ciB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"ciN" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"ciQ" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"cjc" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"cjd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"cjf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"cjg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"cjk" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 6"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"cjm" = ( -/obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"cjt" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"cjA" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cjC" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cjE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"cjM" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform_decoration/metal/almayer/northwest, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"cjW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"ckd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"cke" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"ckh" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ckj" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/nanopaste{ - pixel_x = -3; - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"ckr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"ckK" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"ckP" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"ckQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"ckR" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"ckW" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/lower) -"ckX" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"ckZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"cle" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_lobby) -"clg" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"clh" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"cli" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"clj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"clk" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"cll" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"clm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"cln" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1; - pixel_y = -29 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"clo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"clp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"clr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"cls" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"clw" = ( -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"clE" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"clF" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"clG" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"clH" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"clI" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"clJ" = ( -/obj/structure/machinery/cm_vending/clothing/medic/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"clK" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"clL" = ( -/obj/structure/machinery/cm_vending/clothing/engi/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"clM" = ( -/obj/structure/machinery/cm_vending/clothing/specialist/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"clN" = ( -/obj/structure/machinery/cm_vending/clothing/leader/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"clS" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"clT" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"clV" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"clW" = ( -/obj/structure/machinery/cm_vending/clothing/smartgun/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"clX" = ( -/obj/structure/machinery/cm_vending/gear/smartgun, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"clY" = ( -/obj/structure/machinery/cm_vending/gear/medic, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"clZ" = ( -/obj/structure/machinery/cm_vending/gear/engi, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"cme" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"cml" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"cmm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"cmn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"cmo" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/tool, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"cmr" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cmv" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = -30 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"cmC" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-1"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"cmK" = ( -/obj/structure/window/reinforced, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) -"cmL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cmM" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/medical) -"cmN" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"cmS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) -"cmV" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"cnd" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-1"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"cnm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"cnn" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"cnq" = ( -/obj/structure/machinery/line_nexter{ - id = "line1"; - pixel_x = -2 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"cnr" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"cnu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"cnE" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/computerlab) -"cnH" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Computer Lab" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/computerlab) -"cnI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"cnM" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"cnR" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastleft{ - req_access = list(19) - }, -/obj/structure/machinery/door/window/westright, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/computerlab) -"cnS" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/command/computerlab) -"cnT" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 1; - name = "\improper Computer Lab"; - req_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/computerlab) -"cnV" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"cnZ" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/folder/white, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/clipboard, -/obj/item/clipboard, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"coa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = -4 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -21 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/morgue) -"cod" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"cog" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"coj" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"coo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"cop" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/tankerbunks) -"cov" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/obj/structure/sign/safety/security{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"coB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"coD" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 12 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"coJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"coT" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"coZ" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"cpj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"cpk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"cpp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"cpz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"cpJ" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "or3privacyshutter"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/medical/operating_room_three) -"cpK" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby2"; - name = "\improper RO Line 2" - }, -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/turf/open/floor/plating, -/area/almayer/squads/req) -"cpP" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"cqd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/hallways/lower/starboard_umbilical) -"cqm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/white{ - pixel_y = 6 - }, -/obj/item/folder/white{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"cqp" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"cqz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"cqH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"cqJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/general_equipment) -"cqM" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"cqQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"cqY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar/tarbacktube, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"crc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"crh" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"cri" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"crD" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/squads/req) -"csd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"csy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"csI" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"csZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"cth" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"ctp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"cts" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ctw" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"ctx" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"ctJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"ctQ" = ( -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"ctT" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Cryogenics Bay" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cryo) -"cuq" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"cus" = ( -/obj/docking_port/stationary/lifeboat_dock/starboard, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"cuy" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cuC" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/upper_engineering/starboard) -"cuN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) -"cuY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"cvb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"cvg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cvx" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/cryo_cells) -"cvH" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"cvI" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cvZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cic) -"cwo" = ( -/obj/structure/largecrate/random/mini/chest{ - pixel_x = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"cwC" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/starboard_hallway) -"cwS" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"cwX" = ( -/obj/structure/ladder{ - height = 1; - id = "cicladder1" - }, -/turf/open/floor/plating/almayer, -/area/almayer/living/briefing) -"cxc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"cxk" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"cxF" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"cyc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"cyh" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Passenger Cryogenics Bay" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) -"cyo" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"cyp" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"cyv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"cyL" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/maint/upper/mess) -"cyP" = ( -/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ - density = 0; - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) -"cyR" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"cyZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"czN" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"czR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cAa" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"cAm" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"cAy" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"cAF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"cAR" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/mp_bunks) -"cBb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"cBd" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"cBj" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"cBs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"cBw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"cBC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/lower/port_aft_hallway) -"cBV" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_fore_hallway) -"cCa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"cCE" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cCL" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cDb" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"cDn" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/clothing/mask/cigarette{ - pixel_y = 8 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = 4; - pixel_y = 11 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"cDs" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"cDx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_p) -"cDC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"cDH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_y = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"cDI" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"cDN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"cDP" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/hallways/upper/midship_hallway) -"cDQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) -"cDZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/living/tankerbunks) -"cEi" = ( -/obj/structure/sign/poster, -/turf/closed/wall/almayer, -/area/almayer/living/grunt_rnr) -"cEl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"cEA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"cEC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"cEG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"cFg" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 - }, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs2"; - name = "ARES Reception Stairway Shutters"; - pixel_x = 24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"cFh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"cFn" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"cFC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"cFP" = ( -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"cGd" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"cGA" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cGB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/hull/lower/l_m_s) -"cGO" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"cGR" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"cGV" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"cGY" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"cHc" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"cHk" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/warden_office) -"cHl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"cHu" = ( -/turf/closed/wall/almayer/research/containment/wall/south, -/area/almayer/medical/containment/cell/cl) -"cHB" = ( -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"cHC" = ( -/obj/structure/machinery/cm_vending/clothing/combat_correspondent, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"cHE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/command/cichallway) -"cHG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"cIe" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"cIm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_fore_hallway) -"cIr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"cIx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"cIG" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"cIO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"cIS" = ( -/obj/structure/closet, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"cIW" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Engine Monitoring" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"cJm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"cJs" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"cJu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"cJv" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresDown2"; - vector_x = 102; - vector_y = -61 - }, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"cJE" = ( -/obj/structure/sign/prop2, -/turf/closed/wall/almayer, -/area/almayer/shipboard/sea_office) -"cJI" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit."; - icon_state = "delivery_engi"; - name = "Returns"; - pixel_x = 25; - pixel_y = 28 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"cJK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cJM" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 3"; - layer = 3.2; - name = "Cell 3 Control"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - has_wall_divider = 1; - id = "Containment Cell 2"; - layer = 3.2; - name = "Cell 2 Control"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 2"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = 7; - req_one_access_txt = "19;28" - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 3"; - name = "Containment Lockdown"; - pixel_x = 13; - pixel_y = -6; - req_one_access_txt = "19;28" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"cKm" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 12 - }, -/obj/item/clothing/head/militia/bucket{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 8; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"cKJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/interrogation) -"cKL" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/upper_engineering/port) -"cLc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"cLd" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/mgoggles/prescription, -/obj/item/clothing/glasses/mbcg, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"cLl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar, -/obj/item/tool/lighter/zippo, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"cLo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow, -/area/almayer/command/airoom) -"cLq" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"cLA" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"cLC" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"cLN" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"cMl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"cMx" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_a_s) -"cMz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"cMH" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"cMN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"cMV" = ( -/obj/structure/sign/prop1{ - pixel_x = -32; - pixel_y = 2 - }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"cMW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"cNf" = ( -/turf/open/floor/almayer/orange, -/area/almayer/living/briefing) -"cNm" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"cNC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"cNI" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"cNJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"cNK" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"cNM" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"cNX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"cOd" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"cOe" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/hallways/upper/midship_hallway) -"cOh" = ( -/obj/item/stool{ - pixel_x = 15; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"cOo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"cOt" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"cOK" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/engineering/upper_engineering/starboard) -"cOY" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/structure/machinery/cm_vending/clothing/dress/corporate_liaison, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"cPg" = ( -/obj/structure/sign/safety/north{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"cPj" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/p_bow) -"cPK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) -"cPP" = ( -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/obj/structure/sign/poster/hunk{ - pixel_x = -25; - pixel_y = 10 - }, -/obj/item/trash/buritto, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"cQc" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/living/briefing) -"cQg" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"cQo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/containment) -"cQv" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/general_equipment) -"cQC" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -8; - pixel_y = 28 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"cQF" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"cQG" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"cQL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/lobby) -"cQW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"cRb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"cRi" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"cRv" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/port_missiles) -"cRK" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"cRL" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/starboard) -"cSa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"cSk" = ( -/obj/structure/machinery/door/window/southleft, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"cSm" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"cSx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"cSC" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/starboard_missiles) -"cSH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"cSP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/lower/port_midship_hallway) -"cSQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"cST" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"cTf" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"cTu" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"cTy" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"cTC" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/offices) -"cTM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"cTX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"cUl" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"cUo" = ( -/turf/open/floor/almayer/plate, -/area/almayer/lifeboat_pumps/north1) -"cUy" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform_decoration/metal/almayer/southwest, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 12; - pixel_x = 2 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"cVb" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"cVf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cVq" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"cVt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"cVw" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"cVK" = ( -/obj/structure/surface/rack, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/spawner/random/facepaint, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"cVZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"cWb" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"cWm" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/structure/sign/safety/med_life_support{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"cWr" = ( -/obj/structure/machinery/photocopier{ - density = 0; - layer = 2.9; - pixel_x = -3; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -19; - pixel_y = 5 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/offices) -"cWw" = ( -/obj/structure/machinery/cm_vending/gear/staff_officer_armory, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"cWy" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/snacks/packaged_burger, -/obj/item/reagent_container/food/snacks/packaged_burger, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"cWE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"cXi" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"cXm" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"cXq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/upper/fore_hallway) -"cXz" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_x = 8 - }, -/obj/structure/transmitter/rotary{ - name = "Reporter Telephone"; - phone_category = "Almayer"; - phone_id = "Reporter"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/device/toner{ - pixel_x = -2; - pixel_y = -11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"cXC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/containment) -"cXD" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"cXR" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/squads/req) -"cXV" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"cXW" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "Research Armory"; - name = "Research Armory"; - req_one_access_txt = "4;28" - }, -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/upper_medical) -"cXX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"cXY" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"cYo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"cYu" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"cYN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"cYT" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"cZb" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"cZe" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_s) -"cZh" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/turf/open/floor/plating, -/area/almayer/command/cichallway) -"cZm" = ( -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"cZp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"cZq" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"cZB" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"cZI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"cZO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"cZV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigarettes/wypacket, -/obj/item/tool/lighter, -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"cZW" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"dan" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/u_a_s) -"daz" = ( -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"daF" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"daI" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Armourer's Workshop"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) -"daK" = ( -/obj/structure/platform/metal/almayer/north, -/obj/item/tool/mop, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"dbc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"dbe" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"dbn" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c200{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/reagent_container/pill/happy, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"dbq" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/engineering/upper_engineering/port) -"dbs" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_s"; - dir = 1; - name = "\improper Brig Maintenance" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown_2"; - name = "\improper Perma Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"dbv" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/computer{ - pixel_x = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 1; - pixel_y = 25 - }, -/obj/item/prop/magazine/book/borntokill{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"dbw" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = -17 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"dbX" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/mess) -"dcd" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"dck" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"dcp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"dcx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"dcy" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/perma) -"dcR" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"dcT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"dcX" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"ddf" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"ddj" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/interrogation) -"ddk" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"ddv" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"ddw" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"ddz" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"ddL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"ddM" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"ddO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"deq" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"deD" = ( -/obj/structure/machinery/prop/almayer/CICmap{ - pixel_x = -5 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"deF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"deH" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"deT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/port_emb) -"dfa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"dfg" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"dfk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"dfA" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"dfC" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"dgg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"dgl" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"dgx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 13 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) -"dgE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"dgI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/cafeteria_officer) -"dha" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"dhd" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) -"dho" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"dhp" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"dhA" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) -"dhQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"dhR" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "north_central_checkpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"div" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"diw" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"diz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D4"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"diJ" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"djQ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"dka" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"dkj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/alamo{ - layer = 2.9 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"dkq" = ( -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Shutters"; - pixel_x = -30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) -"dkz" = ( -/obj/structure/pipes/vents/scrubber/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"dkO" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/obj/structure/catwalk{ - health = null - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"dkP" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dkX" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"dll" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"dlo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"dlu" = ( -/obj/effect/landmark/start/marine/bravo, -/obj/effect/landmark/late_join/bravo, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"dlT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"dmg" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"dmr" = ( -/obj/structure/transmitter{ - name = "Brig Offices Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Main Offices"; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"dmv" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/command/cichallway) -"dmA" = ( -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"dmE" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/incendiary, -/obj/item/mortar_shell/incendiary, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"dmF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"dmR" = ( -/obj/effect/glowshroom, -/obj/effect/glowshroom{ - pixel_y = 16 - }, -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"dmZ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 1"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"dnh" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/almayer/red/northwest, -/area/almayer/maint/upper/u_a_p) -"dnC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/hydroponics) -"dnE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"dnH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"dnP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"dnS" = ( -/obj/structure/safe, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/securestorage) -"dnZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"dof" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - name = "\improper Upper Engineering" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"doJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"doP" = ( -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "delivery outlet"; - pixel_x = -1; - pixel_y = 25; - range = 0 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"doU" = ( -/obj/structure/surface/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"doX" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"dpo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"dpA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dpO" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/delta) -"dqb" = ( -/obj/structure/sign/safety/security{ - pixel_x = -16 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"dqg" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"dqj" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/command/lifeboat) -"dqr" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/living/briefing) -"dqw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/weapon_room/notunnel) -"dqD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"dqE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Conference and Office Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"drj" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"drk" = ( -/obj/structure/closet, -/turf/open/floor/almayer/silver/north, -/area/almayer/engineering/port_atmos) -"dro" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"drT" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/obj/item/storage/fancy/vials, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"drU" = ( -/obj/structure/machinery/door_control{ - id = "ARES JoeCryo"; - name = "ARES WorkingJoe Bay Shutters"; - pixel_x = 24; - req_one_access_txt = "91;92" - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Comms" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"dsA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/execution) -"dsY" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dtu" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_a_s) -"dtH" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"duo" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"dut" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc04"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = 23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"duv" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"duw" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"duz" = ( -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"duF" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"duO" = ( -/obj/structure/machinery/chem_dispenser/corpsman, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"duT" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 2"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/cells) -"duV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"dvg" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/obj/structure/sign/safety/chem_lab{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/chemistry) -"dvl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"dvs" = ( -/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"dvD" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"dvZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"dwj" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"dwl" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"dwr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge{ - layer = 3.1; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"dwu" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"dwA" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"dwI" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"dxu" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_four) -"dxv" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/computerlab) -"dxF" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/stair_clone/upper) -"dxJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"dxK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"dxT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"dya" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 2"; - name = "\improper cell shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Isolation Cell" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"dyb" = ( -/obj/structure/machinery/smartfridge/chemistry, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"dyd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dyj" = ( -/obj/structure/closet/secure_closet/commander, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/device/whistle, -/obj/item/device/megaphone, -/obj/item/device/radio, -/obj/item/clothing/shoes/laceup, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"dyp" = ( -/obj/structure/machinery/ares/cpu, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"dyq" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"dyx" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"dyK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/ce_room) -"dzp" = ( -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"dzt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Secondary Processors"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"dzG" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"dzX" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"dAm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dAq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"dAA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"dAQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"dAX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"dBg" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"dBj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/hydroponics) -"dBk" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"dBp" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"dBs" = ( -/obj/structure/machinery/cm_vending/clothing/dress, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"dBC" = ( -/obj/structure/platform/metal/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"dBG" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"dBH" = ( -/obj/structure/window/framed/almayer/white, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"dBI" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 4 - }, -/obj/item/trash/USCMtray{ - pixel_y = 6 - }, -/obj/item/trash/USCMtray{ - pixel_y = 8 - }, -/obj/item/trash/USCMtray{ - pixel_y = 10 - }, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"dBO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"dBR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/lower/repair_bay) -"dBS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"dCe" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cells) -"dCr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"dCx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"dCz" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"dCD" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"dCK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"dCM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"dDp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"dDt" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"dDI" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform/metal/almayer/east, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = 24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"dDJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"dDL" = ( -/obj/structure/machinery/light/double/blue{ - light_color = "#a7dbc7"; - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/upper_medical) -"dDM" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop/hangar) -"dDT" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"dEk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"dEm" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/containment/cell) -"dEn" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"dEo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"dEp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"dEt" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"dEG" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"dEJ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north2) -"dEK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"dEL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"dEQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"dEX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/bombclosetsecurity, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"dFk" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/command/lifeboat) -"dFl" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"dFF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"dFL" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"dFM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"dFN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"dFR" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/cichallway) -"dFW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"dGe" = ( -/obj/structure/platform/metal/almayer/east, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"dGg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"dGo" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform_decoration/metal/almayer/southwest, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"dGr" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"dGC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"dGP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"dGT" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"dGU" = ( -/obj/structure/sign/poster/propaganda{ - pixel_x = -27 - }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dHd" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"dHe" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"dHu" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = 23 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 2; - pixel_y = -4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"dHV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/unary/freezer{ - dir = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"dHZ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/living/bridgebunks) -"dIi" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating/plating_catwalk/aicore, -/area/almayer/command/airoom) -"dIn" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"dID" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"dIH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"dII" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"dJe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"dJy" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"dJC" = ( -/obj/structure/machinery/sentry_holder/almayer/mini/aicore, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"dJG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dJI" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/arcturianstopsign{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"dJJ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution_storage) -"dJO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - explo_proof = 1; - name = "ARES Chamber Lockdown"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4; - density = 0; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"dKp" = ( -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell/cl) -"dKK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"dKL" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/airmix) -"dKO" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = 25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"dKS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"dKX" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"dLc" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"dLe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"dLt" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/sea_office) -"dLz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south1) -"dMj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"dMB" = ( -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"dME" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"dMK" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"dNj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"dNq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/containment) -"dNt" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_1"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"dNv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"dNM" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"dNW" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"dNZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"dOe" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/reagent_dispensers/ethanoltank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"dOl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"dOG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"dON" = ( -/obj/item/stack/cable_coil{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/trash/pistachios, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"dPd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"dPk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"dPm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"dPq" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"dPC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"dPH" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"dPO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"dPQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"dPT" = ( -/obj/structure/machinery/brig_cell/cell_2{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"dQp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"dQA" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/lower) -"dQV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dRh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"dRj" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/mp_bunks) -"dRs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"dRv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/squads/alpha) -"dRA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"dRD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices/flight) -"dRP" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"dRT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"dSm" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"dSp" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"dSI" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/hallways/upper/midship_hallway) -"dSJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"dSX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_two) -"dSZ" = ( -/obj/structure/bed/chair, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"dTd" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"dTn" = ( -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"dTr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"dTI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"dTS" = ( -/obj/structure/machinery/fuelcell_recycler, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"dTZ" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"dUE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"dUR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"dUS" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"dUZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/port_missiles) -"dVd" = ( -/obj/structure/machinery/seed_extractor{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"dVe" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/briefing) -"dVn" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"dVs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"dVu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"dVO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"dVR" = ( -/obj/structure/ladder{ - height = 2; - id = "AftPortMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_p) -"dWc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"dWg" = ( -/obj/effect/landmark/start/cargo, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"dWw" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"dWA" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"dWJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"dWX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"dXb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"dXd" = ( -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"dXo" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"dXr" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"dXG" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"dXI" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/stern_point_defense) -"dXV" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"dXY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"dYb" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dYc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"dYl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"dYu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"dYC" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"dYR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"dYU" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8; - plane = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"dYX" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"dZu" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"dZS" = ( -/obj/structure/platform/metal/almayer/east, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"dZZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"eaf" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/general_equipment) -"ean" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 3"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"eas" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_one) -"eax" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"eaz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ebd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"ebf" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"ebn" = ( -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"ebp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ebI" = ( -/obj/item/clothing/shoes/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"ebN" = ( -/turf/closed/wall/almayer/aicore/reinforced, -/area/almayer/command/airoom) -"ecb" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ecj" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"eco" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"ecr" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/captain_mess) -"ecS" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"ecZ" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge4" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"edn" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"edo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"edv" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"edG" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"edL" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/obj/structure/platform_decoration/metal/almayer, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"edV" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) -"eed" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/computerlab) -"eeh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/packaged_burger, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"eei" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/cups{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"eem" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/snacks/boiledrice, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"eet" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"eeu" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/door_control{ - id = "kitchen"; - name = "Kitchen Shutters"; - pixel_x = -25 - }, -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"eeA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"eeC" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"eeR" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"efj" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"efk" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"efC" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"efJ" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"efK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"efL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"efP" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"efT" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"efV" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"egc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc01"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = -23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"ege" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = -24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Main Staircase"; - dir = 4; - pixel_y = -8 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"egt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Chapel" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/chapel) -"egD" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/lower/port_midship_hallway) -"ehc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"ehi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"ehj" = ( -/obj/item/stack/catwalk, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ehl" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/interrogation) -"ehm" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"ehx" = ( -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"ehL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) -"ehM" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"ehR" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/red{ - layer = 3.2 - }, -/obj/item/bedsheet/red{ - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"ehX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"eim" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"eiq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/prop/magazine/dirty, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"eiw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_two) -"eiE" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/optable, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"eiN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bedsheetbin{ - pixel_y = 6 - }, -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"eiP" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ejj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/wrench{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/tool/wrench{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"ejo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ejt" = ( -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/command/lifeboat) -"ejx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"ejV" = ( -/obj/structure/closet, -/obj/item/device/flashlight/pen, -/obj/item/attachable/reddot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"ejY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"eky" = ( -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"ekz" = ( -/obj/structure/girder/displaced, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"ekM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"ekR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_umbilical) -"ekY" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Memorial Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/starboard_garden) -"ekZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4; - pixel_y = 10 - }, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 4; - name = "brig cameras console"; - pixel_y = -11 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"elf" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"elv" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"elx" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"elE" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_one) -"elR" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"elV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - dir = 2; - name = "\improper Execution Equipment" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/execution_storage) -"elY" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"eme" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"eml" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"emn" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"emp" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/processing) -"emr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"emw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"emA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_s) -"emC" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) -"emK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/medical_science) -"emL" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/midship_hallway) -"emU" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"ene" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/securestorage) -"eni" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"enK" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"enQ" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"enY" = ( -/obj/item/storage/firstaid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"eob" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"eox" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"eoy" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"eoE" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"eoG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"eoK" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"epk" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"epu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"epJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"epT" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"eqb" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/stamp/denied{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/device/eftpos{ - eftpos_name = "Cargo Bay EFTPOS scanner"; - pixel_x = -10 - }, -/obj/item/tool/stamp/ro{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/storage/fancy/cigar{ - pixel_x = 6 - }, -/obj/item/ashtray/glass{ - pixel_x = 11; - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"eqd" = ( -/obj/item/stack/folding_barricade/three, -/obj/item/stack/folding_barricade/three, -/obj/structure/surface/rack, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"eqm" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control{ - id = "Secretroom"; - explo_proof = 1; - layer = 2.5; - name = "Shutters"; - use_power = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"eqB" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/engineering/port_atmos) -"eqD" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"eqI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"eqL" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"eqN" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"eqP" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"erd" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell/cl) -"ere" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"erh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"ern" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"erE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"erF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"erG" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/effect/landmark/start/marine/smartgunner/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"erL" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/crushed_cup, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = -10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"erN" = ( -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"esd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"esm" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"esn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/multitool{ - desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas."; - icon_state = "multitool_big"; - name = "\improper Oversized Security Access Tuner"; - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/stack/sheet/cardboard/medium_stack{ - layer = 3.01; - pixel_x = -7; - pixel_y = -6 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"esC" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/prop/magazine/dirty{ - pixel_x = -6; - pixel_y = -10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/captain_mess) -"esF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"esK" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"esM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/gym) -"esQ" = ( -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/upper/fore_hallway) -"esT" = ( -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/command/lifeboat) -"etf" = ( -/turf/open/floor/almayer/plating_striped/north, -/area/almayer/command/lifeboat) -"etn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"eto" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "CMO Shutters"; - name = "Office Shutters"; - req_access_txt = "5"; - pixel_x = -29 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"ets" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"ety" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"etE" = ( -/obj/structure/prop/almayer/name_stencil, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"etF" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"etM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"etN" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"eua" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"eup" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"euL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Starboard Railguns and Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"euN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Left"; - name = "ARES Mainframe Lockdown"; - pixel_x = 24; - pixel_y = 24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"euV" = ( -/turf/open/floor/almayer/uscm/directional/logo_c/west, -/area/almayer/command/cic) -"euW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/engineering_materials, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"eva" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"evg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"evk" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = -4 - }, -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_y = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"evC" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "civ_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = -24; - pixel_y = -7; - req_access_txt = "31" - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"evM" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"evN" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"evO" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform_decoration/metal/almayer/southeast, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south2) -"evR" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"evX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north1) -"ewc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"ewr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"ewF" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"ewI" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Execution Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/execution) -"ewO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"ewS" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"exb" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"exc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"exi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"exl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"exy" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"exQ" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eyl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"eyD" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/starboard_hallway) -"eyM" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"eyQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"eyR" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"eyV" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/shipboard/brig/cells) -"ezq" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ezt" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ezG" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"ezQ" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ezX" = ( -/obj/structure/bed/chair/wood/normal, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"eAg" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/squads/alpha) -"eAm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"eAx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) -"eAC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"eAF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"eAG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/clipboard, -/obj/item/tool/pen{ - pixel_y = -17 - }, -/obj/item/paper_bin/uscm{ - pixel_y = -16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"eAI" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower/engine_core) -"eAL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"eAN" = ( -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"eAU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/basketball) -"eBd" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"eBe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"eBg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"eBx" = ( -/obj/structure/closet/emcloset/legacy, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/starboard_hallway) -"eBE" = ( -/obj/structure/machinery/photocopier{ - anchored = 0 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"eBG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"eBO" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"eBV" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"eBZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/fire{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"eCt" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/item/stack/sheet/mineral/uranium{ - amount = 5 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"eCI" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/brig/execution) -"eDe" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) -"eDo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"eDq" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"eDt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 8 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/processing) -"eDu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"eDT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"eEc" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eEk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"eEo" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"eEw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"eFa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eFj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"eFG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/chemistry) -"eFK" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"eFM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"eFP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/fridge/organic, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"eFT" = ( -/obj/structure/bed/sofa/vert/grey, -/obj/structure/bed/sofa/vert/grey{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"eGq" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"eGr" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Records"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"eGH" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"eGZ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"eHa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"eHx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"eHy" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"eHX" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"eHY" = ( -/obj/structure/surface/rack, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"eIf" = ( -/obj/structure/prop/invuln/pipe_water, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"eIG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"eIN" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"eIO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"eIY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"eJg" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/aft_hallway) -"eJQ" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/command/lifeboat) -"eJU" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/lifeboat_pumps/north1) -"eJX" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/ce_room) -"eKy" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"eKH" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"eKI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"eKJ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"eKQ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"eKT" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"eKZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"eLp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/computer/supplycomp/vehicle, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"eLu" = ( -/obj/structure/sign/safety/three{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"eLC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"eLH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"eLX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) -"eMr" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"eMx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"eMI" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"eMJ" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/perma) -"eMP" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"eMZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"eNi" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/ce_room) -"eNI" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "containmentlockdown_S"; - name = "\improper Containment Lockdown" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"eNL" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eNR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"eOx" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"eOM" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-6"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"eON" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) -"ePq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_umbilical) -"ePz" = ( -/obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"ePM" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"ePN" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/plastic{ - amount = 5 - }, -/obj/item/stack/sheet/glass{ - amount = 50; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"eQj" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -5; - pixel_y = -24; - req_one_access_txt = "91;92" - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown"; - pixel_x = 6; - pixel_y = -24; - req_one_access_txt = "91;92" - }, -/obj/structure/surface/table/reinforced/almayer_B{ - explo_proof = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 4; - pixel_y = 12 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_y = -1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"eQm" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"eQz" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"eQJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/poster/ad{ - pixel_x = 30 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"eQR" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"eRi" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/black{ - pixel_y = 8 - }, -/obj/item/folder/yellow, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"eRu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"eRy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc04"; - name = "\improper Treatment Center" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"eRI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Reception Exterior"; - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"eRR" = ( -/obj/item/clothing/head/helmet/marine{ - pixel_x = 16; - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/grown/poppy, -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"eRS" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/lower/workshop/hangar) -"eSk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"eSo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"eSp" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"eSN" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"eSU" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer1" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"eTb" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/stern) -"eTd" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/boonie{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/item/trash/popcorn, -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"eTm" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"eTx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) -"eTB" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"eTC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lockerroom) -"eTD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"eUe" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"eUf" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eUh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"eUn" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/chemistry) -"eUA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"eUZ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"eVj" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"eVm" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"eVu" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"eVv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"eVE" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"eVQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"eVR" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"eVT" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"eWf" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"eWp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"eWs" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"eWv" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"eWx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"eWF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"eXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/bodyscanner, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"eXi" = ( -/obj/structure/platform/metal/almayer/east, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"eXq" = ( -/turf/closed/wall/almayer, -/area/almayer/living/offices/flight) -"eXr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"eXy" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"eXD" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"eYj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"eYn" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"eYp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"eYr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = -16 - }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"eYu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/squad_changer{ - pixel_x = -9 - }, -/obj/structure/machinery/computer/card{ - pixel_x = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"eYD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"eYF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"eYM" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = -22 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"eYQ" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_x = -32 - }, -/obj/effect/landmark/start/synthetic, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"eYR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering/port) -"eYU" = ( -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink_med_req" - }, -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/hydroponics) -"eZm" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_stern) -"eZo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"eZC" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"eZH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"eZR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"fag" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"far" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/port_aft_hallway) -"faE" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "law and engineering manuals bookcase"; - opacity = 0 - }, -/obj/item/book/manual/marine_law, -/obj/item/book/manual/detective, -/obj/item/book/manual/security_space_law, -/obj/item/book/manual/engineering_guide, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/orbital_cannon_manual, -/obj/item/book/manual/ripley_build_and_repair, -/obj/item/book/manual/engineering_hacking, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"faO" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"faR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"faX" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"fbb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"fbe" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"fbo" = ( -/obj/structure/machinery/door_control{ - id = "kitchen2"; - name = "Main Kitchen Shutters"; - pixel_x = -28 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"fbr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "briglobby"; - dir = 2; - name = "\improper Brig Lobby" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"fbw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"fbB" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Psychiatric Care Unit" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"fbC" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/maint/hull/lower/l_m_s) -"fbR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"fbU" = ( -/obj/item/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"fbV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/north2) -"fca" = ( -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"fcf" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"fco" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"fcy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"fcB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"fcE" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/basketball) -"fcM" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"fcP" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"fcS" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"fdx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"fdE" = ( -/obj/item/clothing/mask/rebreather/scarf, -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"fdX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"fdZ" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"fea" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"feb" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/brig/execution) -"feo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"feq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"feD" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"feG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"feI" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"feS" = ( -/obj/structure/machinery/door_control{ - id = "pobunk2"; - name = "PO2 Privacy Shutters"; - pixel_x = -24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"feY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_two) -"ffg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/perma) -"ffq" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_y = 15 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 7; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ffx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/head/helmet/marine/tech/tanker, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"ffE" = ( -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"ffN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"fgh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"fgl" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"fgm" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"fgt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/shipboard/brig/medical) -"fgE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/machinery/vending/cigarette, -/obj/item/ashtray/plastic{ - layer = 3.4; - pixel_x = 7; - pixel_y = 11 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 19 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"fgR" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "courtyard window"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cells) -"fgU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"fhf" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"fhH" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"fhR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"fic" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"fie" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop) -"fix" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"fiQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"fje" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"fjo" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"fjz" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"fjA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) -"fjH" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform/metal/almayer, -/obj/structure/platform_decoration/metal/almayer/southwest, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"fkK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"fkX" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 8 - }, -/area/almayer/medical/containment/cell/cl) -"flr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"flD" = ( -/obj/structure/largecrate/supply/supplies/water, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) -"flK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform/metal/almayer/north, -/obj/structure/largecrate/random/case/double, -/obj/item/cell/crap{ - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"flL" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - SynthBay"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"flW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"fml" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_fore_hallway) -"fmv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"fmB" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/pilotbunks) -"fmZ" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_umbilical) -"fnc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"fnk" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"fnv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"fnx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "19" - }, -/obj/effect/landmark/map_item, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"fnA" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - access_modified = 1; - name = "\improper CMO's Bedroom"; - req_one_access_txt = "1;5" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"fnI" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"foC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"foL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/squads/charlie) -"foN" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"foP" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_x = 29; - pixel_y = 3; - req_one_access_txt = "28" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"foS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"fpi" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"fpA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"fpI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fpM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fpR" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/starboard_atmos) -"fpT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"fpW" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/hangar) -"fqb" = ( -/obj/item/paper/prison_station/interrogation_log{ - pixel_x = 10; - pixel_y = 7 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/item/limb/hand/l_hand{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"fqc" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"fqq" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"fqw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fqA" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"fqC" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"fqJ" = ( -/obj/structure/machinery/door_control{ - id = "safe_armory"; - name = "Hangar Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"fqO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"fqQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"fqU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"fqW" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"fqZ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"frb" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 - }, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza{ - pixel_y = 8 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"frl" = ( -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"frt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 6; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = -6; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Courtyard Window Shutters"; - pixel_x = -6; - pixel_y = 9; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Cell Privacy Shutters"; - name = "Cell Privacy Shutters"; - pixel_x = 6; - pixel_y = 9; - req_access_txt = "3" - }, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/warden_office) -"frz" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"frF" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/starboard_missiles) -"frM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"fsf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/port_umbilical) -"fsh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"fsp" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"fsR" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"fsU" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"fsV" = ( -/obj/structure/target, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"fsZ" = ( -/obj/structure/platform/metal/almayer/east, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"fuz" = ( -/obj/structure/machinery/cm_vending/clothing/pilot_officer, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"fuS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"fuT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"fuU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"fuY" = ( -/obj/structure/bed/chair/bolted{ - dir = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/interrogation) -"fva" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"fvd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"fvf" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/living/briefing) -"fvo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/glasses/welding{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/weldingtool{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"fvA" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"fvB" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"fvN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"fvV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"fwD" = ( -/obj/item/reagent_container/food/snacks/grown/poppy{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"fwK" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/starboard_umbilical) -"fwM" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"fwY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie_delta_shared) -"fxI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"fxJ" = ( -/obj/structure/closet/secure_closet/guncabinet/riot_control, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/obj/item/weapon/shield/riot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"fxZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"fya" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"fyp" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"fyD" = ( -/obj/structure/machinery/light, -/obj/structure/ladder{ - height = 1; - id = "cicladder2" - }, -/turf/open/floor/plating/almayer, -/area/almayer/living/briefing) -"fyI" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"fyT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - dir = 1; - name = "\improper Command Power Substation" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"fzc" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"fzq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"fzt" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"fzx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"fzP" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/folder/black, -/obj/item/storage/fancy/cigarettes/kpack, -/obj/structure/machinery/door_control{ - id = "CE Office Shutters"; - name = "CE Office Shutters"; - pixel_x = -6; - pixel_y = 18; - req_access_txt = list(); - req_one_access_txt = "1;6" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/ce_room) -"fzT" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"fAa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 - }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/offices/flight) -"fAr" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"fBi" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fBo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"fBO" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"fCg" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"fCi" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/lungs/prosthetic, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"fCp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"fCG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"fCI" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES JoeCryo"; - name = "\improper ARES Synth Bay Shutters"; - plane = -7 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"fCL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"fCT" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"fCW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"fDh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"fDj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"fDG" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"fDJ" = ( -/obj/effect/landmark/start/marine/engineer/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"fDU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"fDV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"fEe" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"fEk" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"fEC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"fEF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fER" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"fFe" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"fFh" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"fFD" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"fFL" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"fFO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/upper_medical) -"fFQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"fFU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"fGa" = ( -/obj/structure/surface/rack, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"fGd" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"fGg" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"fGi" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"fGu" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext"; - name = "Window Shutters"; - pixel_x = -26; - pixel_y = 6; - req_access_txt = "28" - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_x = -26; - pixel_y = 1; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"fGB" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"fHb" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"fHh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"fHz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"fHF" = ( -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"fIK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"fIM" = ( -/obj/effect/landmark/start/marine/tl/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"fIX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - access_modified = 1; - name = "\improper Requisitions Auxiliary Storage Room"; - req_one_access_txt = "19;21" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"fIZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n117{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"fJm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"fJp" = ( -/obj/structure/girder, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"fJt" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"fJu" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"fJy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"fJO" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_1"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"fJT" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4 - }, -/obj/item/seeds/wheatseed, -/obj/item/seeds/wheatseed, -/turf/open/floor/almayer/green/southeast, -/area/almayer/shipboard/brig/cells) -"fKe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"fKh" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/window, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"fKi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) -"fKt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/prop/dam/crane{ - bound_height = 32; - climbable = 1; - layer = 3.5; - pixel_y = -23 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fKw" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 5"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"fKT" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"fKV" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/paper{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fLf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fLg" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/wrapped/barcardine{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fLi" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"fLl" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_stern) -"fLt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"fLu" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Oxygen Supply Console" - }, -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"fLv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"fLF" = ( -/obj/structure/machinery/brig_cell/perma_2{ - pixel_x = -32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"fMe" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/paper, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"fMt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 - }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/sign/safety/laser{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"fME" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"fMU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"fNd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fNi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/bed/chair/office/dark, -/obj/item/clothing/head/cmcap{ - pixel_x = -2; - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"fNH" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fNX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"fOk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"fOv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"fOz" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"fOK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"fOL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/upper_medical) -"fPn" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"fPp" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/living/port_emb) -"fPu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fPB" = ( -/obj/structure/machinery/ares/processor/apollo, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"fPF" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool, -/obj/item/tool/screwdriver{ - icon_state = "screwdriver7" - }, -/obj/item/tool/crowbar/red, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"fQn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"fQu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/upper_medical) -"fQy" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"fQD" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Core Chamber"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"fRg" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_s) -"fRr" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/command/cichallway) -"fRC" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"fRL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"fRS" = ( -/obj/effect/landmark/start/warden, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/landmark/late_join/warden, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"fSl" = ( -/obj/structure/machinery/line_nexter{ - id = "line2"; - pixel_x = -2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"fSm" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"fSx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"fSF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight, -/obj/item/storage/firstaid/rad, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower) -"fTj" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"fTl" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_s) -"fTm" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"fTt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"fTF" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Laundry Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"fUj" = ( -/obj/structure/platform/metal/almayer, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"fUz" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/storage/box/cups, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"fUA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"fUB" = ( -/obj/structure/closet/secure_closet/fridge/organic/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"fUC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"fUZ" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"fVe" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_p) -"fVk" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"fVo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/workshop) -"fVx" = ( -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range, -/area/almayer/command/airoom) -"fVz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"fVF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"fVG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"fWg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"fWi" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"fXg" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"fXx" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"fXz" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"fXE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"fXN" = ( -/obj/effect/landmark/start/marine/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"fXO" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north2) -"fXP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"fXZ" = ( -/obj/docking_port/stationary/emergency_response/port3, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"fYb" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/morgue) -"fYf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"fYr" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"fYZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"fZl" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/engine_core) -"fZo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"fZq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"fZy" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"fZA" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/obj/structure/machinery/meter, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower) -"fZE" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fZG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"fZR" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"fZX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"fZZ" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"gac" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"gaJ" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/cryo) -"gaQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"gba" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine/uscm/command{ - department = "AI Core"; - pixel_y = 8 - }, -/obj/structure/transmitter/rotary{ - name = "AI Core Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Core"; - pixel_x = 8; - pixel_y = -8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gbg" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 - }, -/obj/structure/machinery/door_control{ - id = "ARES Operations Right"; - name = "ARES Operations Shutter"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"gbm" = ( -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"gbs" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"gbw" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) -"gcm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"gcN" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - access_modified = 1; - name = "\improper Senior Enlisted Advisor's Office"; - req_access = null; - req_access_txt = "19;29" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/sea_office) -"gde" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"gdp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/hangar) -"gdG" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/mp_bunks) -"gdJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"gdS" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/laundry) -"gei" = ( -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17; - pixel_y = -7 - }, -/obj/structure/medical_supply_link, -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"gek" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/fancy/cigarettes/wypacket, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"gel" = ( -/turf/closed/wall/almayer/research/containment/wall/west, -/area/almayer/medical/containment/cell/cl) -"gen" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"ger" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 8 - }, -/obj/item/clipboard{ - pixel_x = -8 - }, -/obj/item/folder/white{ - pixel_x = -8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"geu" = ( -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"gfd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"gfo" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"gfq" = ( -/obj/structure/closet/secure_closet/fridge/groceries, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"gfu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"gfG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"gfN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) -"gfW" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/lockerroom) -"ggh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"ggl" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"ggo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ggt" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"ggz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"ggD" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"ggJ" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc03"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = 28; - pixel_y = -23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"ggQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/airmix) -"ggS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"ghA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/handcard/uno_reverse_red{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/toy/deck/uno, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"ghF" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"gii" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/interrogation) -"gim" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform/metal/almayer/east, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gio" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"gip" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"giy" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"giD" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"giR" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/shipboard/brig/cic_hallway) -"giW" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/upper/midship_hallway) -"gjg" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"gji" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"gjm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gjt" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"gjv" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gjy" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"gjB" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/command/computerlab) -"gjK" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"gkd" = ( -/obj/effect/landmark/start/marine/charlie, -/obj/effect/landmark/late_join/charlie, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"gkr" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"gkE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"gkK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"gll" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"gls" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/item/clipboard, -/obj/item/clipboard, -/obj/item/folder/black, -/obj/item/folder/black, -/obj/item/folder/white, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"glB" = ( -/obj/structure/sign/safety/chem_lab{ - pixel_x = 5; - pixel_y = 29 - }, -/obj/structure/machinery/chem_master, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"glG" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/shipboard/brig/medical) -"glH" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"glP" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"gmb" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - dir = 1; - name = "Storage"; - req_one_access_txt = "19;21" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"gmj" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"gms" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"gnu" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"gnv" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"gnK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"gnM" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"goj" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"gol" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"goo" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"goy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"goL" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"goM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"goY" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) -"gpc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Engineering North Hall" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"gpi" = ( -/obj/structure/dropship_equipment/paradrop_system, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"gpp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"gpt" = ( -/obj/structure/platform/metal/almayer/north, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"gpI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"gpO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"gpT" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"gpW" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - explo_proof = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs1"; - name = "ARES Reception Shutters"; - pixel_y = 24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gpY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/lifeboat_pumps/north1) -"gqn" = ( -/obj/structure/bed/chair/comfy/ares{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/no_boom/gas{ - vent_tag = "Core Chamber" - }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"gqt" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"gqx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"gqz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"gqH" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/hallways/upper/midship_hallway) -"gqI" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/upper/midship_hallway) -"gqP" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"gqQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"gre" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/upper/fore_hallway) -"grv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"grG" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/navigation) -"grR" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/living/briefing) -"grT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tool/wet_sign{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gsd" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler{ - pixel_x = 7 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = -6 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"gsg" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "Alpha_1"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"gsi" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"gsm" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"gsp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"gsy" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"gsC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"gsJ" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/hallways/upper/midship_hallway) -"gsM" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"gsZ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2; - pixel_y = -21 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -2; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"gtg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"gtp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"gtD" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gtH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"gtI" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"gtQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"gtU" = ( -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 17 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"guo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/south2) -"guK" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"guP" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/maint/upper/u_a_s) -"guS" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"guW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/sign/prop3{ - pixel_x = 28 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/clothing/mask/gas{ - pixel_y = 7 - }, -/obj/item/clothing/mask/gas{ - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"gvq" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"gvu" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"gvK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"gvU" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"gwh" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"gwj" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"gwn" = ( -/obj/structure/machinery/ares/processor/bioscan, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"gwo" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/living/basketball) -"gww" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"gwM" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/item/storage/pill_bottle/tramadol/skillless{ - layer = 2.9; - pill_type_to_fill = null; - pixel_y = 14 - }, -/obj/structure/machinery/door_control{ - id = "Delta_1"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"gwR" = ( -/obj/item/device/flashlight/lamp/green, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"gxh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"gxk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"gxm" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/stairs) -"gxn" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"gxt" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - name = "\improper Warden's Office" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"gxI" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/s_bow) -"gxO" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/gym) -"gxP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"gxU" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"gyh" = ( -/obj/structure/machinery/cm_vending/gear/executive_officer{ - density = 0; - pixel_y = 30 - }, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"gym" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/mp_bunks) -"gyn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gyw" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"gyE" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) -"gyH" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gyN" = ( -/obj/structure/machinery/prop{ - desc = "It's a server box..."; - icon_state = "comm_server"; - name = "server box" - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"gyO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/ce_room) -"gyU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"gzq" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"gzw" = ( -/obj/structure/closet/hydrant{ - pixel_x = 30 - }, -/obj/item/reagent_container/hypospray/autoinjector/skillless, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"gzI" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "pobunk1"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/living/pilotbunks) -"gzJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/morgue) -"gzK" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"gzM" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"gzN" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gzV" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"gAj" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"gAk" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"gAl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"gAz" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/golden_cup{ - desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"gAA" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha_bravo_shared) -"gAO" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"gAP" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet, -/obj/item/clothing/head/bearpelt, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"gAS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"gBc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"gBd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gBo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"gBs" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"gBU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/bag/trash{ - pixel_x = -3 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gBW" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"gCf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"gCu" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"gCw" = ( -/obj/item/reagent_container/food/drinks/cans/beer{ - pixel_x = 10 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"gCB" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north{ - cell_type = /obj/item/cell/hyper - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"gCP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"gDh" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Security Vault"; - req_access = null; - req_one_access_txt = "91;92" - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore{ - plane = -6 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"gDk" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"gDp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"gDt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/crew/alt{ - dir = 4 - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Brig Cells Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Cells"; - pixel_x = 16 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) -"gDw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform/metal/almayer/west, -/obj/structure/machinery/recharge_station{ - layer = 2.9 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"gDH" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"gDJ" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"gDS" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/obj/structure/platform_decoration/metal/almayer/north, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/upper_medical) -"gDW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"gDX" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"gEg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices/flight) -"gEh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"gEo" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"gEv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"gEC" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"gFa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"gFd" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes{ - pixel_y = 9 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"gFz" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 1; - vent_tag = "Records" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gFO" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform/metal/almayer/west, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gFP" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/stern_point_defense) -"gFR" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/gear/commanding_officer, -/turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) -"gGf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"gGr" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"gGs" = ( -/obj/item/tool/crowbar/red{ - pixel_x = -13; - pixel_y = -13 - }, -/obj/item/stack/cable_coil{ - pixel_x = 7 - }, -/obj/item/tool/wirecutters{ - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/bed{ - can_buckle = 0; - desc = "A lightweight support lattice."; - icon = 'icons/obj/structures/structures.dmi'; - icon_state = "latticefull"; - layer = 2.1; - name = "lattice" - }, -/turf/open/floor/plating, -/area/almayer/hallways/hangar) -"gGw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/vehiclehangar) -"gGx" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -16 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"gGI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"gGJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"gHh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"gHi" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"gHj" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/fridge/groceries/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"gHl" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"gHo" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"gHt" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"gHZ" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"gIh" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - damage_cap = 50000; - name = "\improper Chief Engineer's Bunk"; - no_panel = 1; - req_access = list(); - req_one_access_txt = "1;6" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/ce_room) -"gIm" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"gIz" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"gII" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"gIJ" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"gIO" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/interrogation) -"gIU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/tapes{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box/tapes{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/box/tapes{ - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"gJf" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"gJg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"gJp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"gJC" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"gJE" = ( -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = 24; - pixel_y = 12; - req_access_txt = "3" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/interrogation) -"gJF" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_stern) -"gJO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door/window/southleft{ - desc = "A window, that is also a door. A windoor if you will. This one is stronger."; - health = 500; - name = "Reinforced Glass door"; - req_one_access_txt = "2;35" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"gJP" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"gKd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"gKo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"gKv" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"gKw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"gKB" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"gKF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"gKK" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/lower/repair_bay) -"gKR" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMO Shutters"; - name = "\improper CMO Office Shutters" - }, -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"gKZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"gLc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"gLl" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_f_s) -"gLm" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"gLz" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"gLD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"gLG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower/engine_core) -"gLN" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"gLZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_2"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"gMd" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/tool/lighter, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"gMk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gMN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - explo_proof = 1; - name = "ARES Chamber Lockdown"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4.1; - density = 0; - dir = 2; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - pixel_x = -1; - pixel_y = -1; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"gMS" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"gMU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/uscm/directional/east, -/area/almayer/living/briefing) -"gNg" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"gNo" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"gNp" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) -"gNq" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"gNx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"gNy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"gNI" = ( -/turf/open/floor/almayer/orange, -/area/almayer/maint/upper/u_a_s) -"gNN" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"gNO" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"gNZ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"gOa" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"gOk" = ( -/obj/structure/largecrate/guns/merc{ - name = "\improper dodgy crate" - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"gOC" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower) -"gOR" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"gOS" = ( -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"gPc" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"gPA" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/upper/midship_hallway) -"gPS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"gPU" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"gQk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/machinery/faxmachine/corporate/liaison, -/obj/item/paper/liaison_brief{ - pixel_y = 8; - pixel_x = -4 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"gQF" = ( -/obj/structure/bed/chair/comfy{ - buckling_y = 2; - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"gQO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"gQQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"gRc" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"gRJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/hallways/lower/port_umbilical) -"gRP" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"gRS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"gSa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"gSj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/engineering/port_atmos) -"gSk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"gSy" = ( -/obj/item/frame/rack{ - layer = 3.1; - pixel_y = 19 - }, -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = 5 - }, -/obj/item/tool/weldpack{ - pixel_x = -2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"gSz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"gSH" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"gTk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"gTH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/skills{ - dir = 4; - pixel_y = 18 - }, -/obj/structure/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 4; - pixel_y = -18 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"gTK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"gUf" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"gUg" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"gUi" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"gUn" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"gUu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gUG" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"gUL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/glass, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 6; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"gUS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) -"gUV" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/command/lifeboat) -"gUX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"gVq" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/containment) -"gVu" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/item/reagent_container/food/snacks/grown/banana{ - pixel_x = 18; - pixel_y = 5 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"gVA" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 8; - id = "almayerlink_OT1_req" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"gVF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"gVW" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/sign/safety/reduction{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"gWm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"gWt" = ( -/obj/structure/surface/table/almayer, -/obj/item/pipe{ - dir = 9 - }, -/obj/item/tool/screwdriver{ - layer = 3.6; - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/tool/crowbar/red{ - pixel_x = 17 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/lower/repair_bay) -"gWu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"gWE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/marine/spec/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"gWG" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/medical/upper_medical) -"gXl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/upper_medical) -"gXs" = ( -/obj/effect/step_trigger/ares_alert/terminals, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES Operations Right"; - name = "\improper ARES Operations Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"gXx" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) -"gXB" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"gYe" = ( -/obj/structure/machinery/vending/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"gYg" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 - }, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"gYl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"gYp" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/maint/upper/u_m_p) -"gYt" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"gYx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"gYU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"gZw" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"gZK" = ( -/turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"gZP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D4"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"gZV" = ( -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"gZW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/port_fore_hallway) -"had" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"hal" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"ham" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"haz" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"haB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"haD" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower) -"haO" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"haQ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/marine, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"haR" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"haY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/starboard_hallway) -"hbl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_s) -"hbp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_stern) -"hbs" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/fire_alarm, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower) -"hbu" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) -"hbA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"hbE" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hbI" = ( -/obj/structure/closet/secure_closet/CMO, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"hcf" = ( -/obj/item/bedsheet/brown{ - layer = 3.2 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/structure/barricade/handrail{ - dir = 4; - layer = 3.3; - pixel_y = 3 - }, -/obj/structure/barricade/handrail{ - dir = 8; - layer = 3.3; - pixel_x = -1; - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/engineering/port_atmos) -"hcw" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/item/explosive/grenade/high_explosive/training, -/obj/structure/machinery/door_control{ - id = "Firing_Range_1"; - name = "range shutters"; - pixel_x = 9; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"hcI" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"hcX" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"hdd" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/starboard_missiles) -"hds" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/living/offices) -"hdy" = ( -/obj/item/storage/firstaid/fire, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hdE" = ( -/obj/structure/filingcabinet, -/obj/item/reagent_container/food/drinks/coffeecup/uscm{ - pixel_y = 14 - }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"hdP" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/aft_hallway) -"hdQ" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Execution Firearms" - }, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/weapon/gun/rifle/m4ra, -/obj/item/ammo_box/magazine/m4ra, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"hdV" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/lower/port_midship_hallway) -"hec" = ( -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"heo" = ( -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -15; - pixel_y = 25 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"heK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"heO" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"heS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"hfa" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"hfb" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"hft" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"hfv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"hfO" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/suit/storage/hazardvest/black, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"hfQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"hgg" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"hgk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"hgo" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower) -"hgp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"hgs" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hgB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/intel, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/computerlab) -"hgD" = ( -/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ - anchored = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"hgL" = ( -/obj/item/tool/warning_cone{ - pixel_x = 4; - pixel_y = 14 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"hgZ" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "or3privacyshutter"; - name = "Privacy Shutters"; - pixel_y = -25 - }, -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) -"hhd" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -9; - pixel_y = 16 - }, -/obj/item/clothing/suit/storage/hazardvest/blue{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"hhg" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"hhn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"hhA" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"hif" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hir" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/living/briefing) -"hiu" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hiy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"hiM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"hiP" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hji" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"hjk" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"hjs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"hjA" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/port_missiles) -"hjB" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Kitchen"; - req_one_access_txt = "30;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"hjM" = ( -/obj/structure/bed/chair/bolted{ - dir = 8 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) -"hjQ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hjT" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/largecrate, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hki" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"hkz" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"hkB" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"hkC" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hkG" = ( -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"hkH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/machinery/door_control{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutters"; - pixel_x = 16; - req_access_txt = "3" - }, -/obj/structure/machinery/door_control{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown Shutters"; - pixel_x = 16; - pixel_y = 8; - req_access_txt = "3" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"hkX" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -7; - pixel_y = 20 - }, -/obj/item/ashtray/bronze{ - pixel_x = 4; - pixel_y = 19 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/map_item{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.04; - pixel_x = 5; - pixel_y = 22 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"hlj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"hlH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"hlI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/transmitter/rotary{ - name = "Brig Wardens's Office Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig Warden's Office"; - pixel_x = 15 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/warden_office) -"hlT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"hlU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"hme" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/hydroponics) -"hmj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"hmv" = ( -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"hmy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hmA" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/p_bow) -"hmC" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"hmF" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"hmS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/blue, -/area/almayer/command/cichallway) -"hmV" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "medical manuals bookcase"; - opacity = 0 - }, -/obj/item/book/manual/surgery, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"hmZ" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"hng" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/item/clothing/accessory/storage/black_vest/acid_harness, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"hnt" = ( -/obj/item/toy/deck{ - pixel_y = 12 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/obj/structure/surface/table/woodentable/poor, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hnE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/ids{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/device/flash, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"hnI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"hnP" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hoc" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"hoK" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"hoT" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"hoW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/adv, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"hpk" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"hpl" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"hpN" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"hpS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "crate_room3"; - name = "\improper Storage Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"hpY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"hqb" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"hqc" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"hqh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/research/containment/entrance, -/area/almayer/medical/containment/cell) -"hqm" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"hqp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hqu" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hqG" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"hqW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"hrh" = ( -/obj/structure/platform_decoration/metal/almayer, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hrm" = ( -/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, -/obj/structure/machinery/light, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"hrn" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - name = "\improper Research Reception Laboratory" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"hro" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"hrF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/starboard_point_defense) -"hrI" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"hsa" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"hsc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"hsg" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/door/window/ultra{ - dir = 8; - req_access_txt = "19" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"hsh" = ( -/obj/structure/coatrack, -/obj/structure/sign/poster/clf{ - pixel_x = -28 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hsj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"hsr" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"hss" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"hsu" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"hsy" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/lower/engine_core) -"hsK" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"hsW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"hte" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"htg" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"htk" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"htl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hto" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"htq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"htG" = ( -/obj/item/tool/soap, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"htL" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/boots/n150{ - pixel_x = -5; - pixel_y = 6 - }, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"huw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 8 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 4; - name = "Dropship Remote Control Console" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"huD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"huK" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/living/cryo_cells) -"huN" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"huO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/computerlab) -"huP" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"huU" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"hvd" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/interrogation) -"hvv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/item/clipboard{ - base_pixel_x = 20; - pixel_x = 5 - }, -/obj/item/paper{ - pixel_x = 5 - }, -/obj/item/tool/pen{ - pixel_x = 5 - }, -/obj/structure/surface/table/reinforced/black, -/obj/structure/transmitter/rotary{ - name = "CIC Reception Telephone"; - phone_category = "Command"; - phone_id = "CIC Reception"; - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"hvw" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/plating, -/area/almayer/powered/agent) -"hvx" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"hvz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hvH" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"hwB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"hwC" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"hwH" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hxe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"hxm" = ( -/obj/item/paper_bin/uscm{ - pixel_y = 4 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"hxG" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_missiles) -"hxZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/spade{ - pixel_x = -4 - }, -/obj/item/tool/shovel/spade{ - pixel_x = 4 - }, -/obj/item/tool/shovel/spade, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_container/glass/bucket, -/obj/item/reagent_container/glass/watertank, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"hyb" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"hyk" = ( -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"hyw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"hyE" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" - }, -/obj/effect/step_trigger/ares_alert/access_control, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"hyQ" = ( -/turf/closed/wall/almayer, -/area/almayer/living/synthcloset) -"hyT" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/obj/structure/sign/safety/north{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"hyV" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 24 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/interrogation) -"hza" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"hzb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed01-supply" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) -"hzc" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/upper_engineering/notunnel) -"hzg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"hzs" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"hzu" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"hzG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"hzN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"hAc" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/flare, -/obj/item/mortar_shell/flare, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"hAf" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"hAh" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/port_umbilical) -"hAz" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"hAA" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"hAG" = ( -/obj/structure/closet/crate/internals, -/obj/item/restraint/adjustable/cable/blue, -/obj/item/restraint/adjustable/cable/blue, -/obj/item/restraint/adjustable/cable/cyan, -/obj/effect/spawner/random/toolbox, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"hAU" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"hAZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"hBc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"hBr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"hBz" = ( -/obj/item/mortar_kit, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"hBF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"hBG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"hBL" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"hBW" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"hCf" = ( -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"hCk" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"hCq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"hCt" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"hCS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/obj/structure/sign/safety/med_cryo{ - pixel_x = 32 - }, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, -/obj/item/weapon/pole/wooden_cane, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"hCV" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"hDw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"hDx" = ( -/obj/effect/landmark/start/marine/tl/delta, -/obj/effect/landmark/late_join/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"hDR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/syringe_case{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/syringe_case, -/obj/item/storage/syringe_case{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"hDU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/lower/port_fore_hallway) -"hDV" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"hDX" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"hEb" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"hEg" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_fore_hallway) -"hEl" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"hEm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hEr" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hEw" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"hEV" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"hFw" = ( -/obj/structure/machinery/disposal/broken, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"hFC" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"hFF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/solid{ - dir = 1; - name = "Morgue Processing" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"hGb" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"hGh" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/chemistry) -"hGG" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"hGN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 16 - }, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"hGO" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/briefing) -"hGV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"hHe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) -"hHl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/pouch/general/large, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"hIp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"hIs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"hIF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"hIG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"hII" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/squads/delta) -"hIX" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"hJg" = ( -/obj/structure/pipes/trinary/mixer{ - dir = 4; - name = "Gas mixer N2/O2" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"hJD" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"hJI" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hKe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hKl" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"hKO" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"hLr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_s"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"hLu" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"hLC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"hLI" = ( -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"hLS" = ( -/obj/structure/machinery/door/airlock/almayer/marine/delta{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"hMi" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"hMk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hMG" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"hMM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"hMN" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_three) -"hMX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"hNh" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"hNv" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"hNw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/charlie) -"hNB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/vehiclehangar) -"hNM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/sheet/metal{ - layer = 2.9; - pixel_y = 6 - }, -/obj/item/tool/shovel/etool/folded, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"hNP" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"hNY" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) -"hOd" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"hOn" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/hallways/upper/midship_hallway) -"hOo" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"hOu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hOV" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/constr) -"hPe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"hPh" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/auxiliary_officer_office) -"hPu" = ( -/obj/structure/largecrate/supply, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"hPD" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"hPI" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/brig/perma) -"hPL" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"hPN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/hydroponics) -"hPZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"hQc" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"hQf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"hQw" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower/engine_core) -"hQK" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) -"hQP" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"hQU" = ( -/obj/structure/morgue, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/morgue) -"hQW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"hQY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"hRa" = ( -/obj/structure/machinery/vending/snack{ - pixel_x = -7 - }, -/obj/structure/machinery/vending/coffee{ - pixel_x = 14 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"hRd" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"hRk" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"hRu" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/brig/execution_storage) -"hRA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"hRW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 - }, -/obj/structure/machinery/computer/crew/alt{ - dir = 4; - pixel_x = -17 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"hSb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"hSk" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"hSt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"hSv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"hSw" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"hSI" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - access_modified = 1; - dir = 2; - name = "Morgue"; - req_access_txt = "25"; - req_one_access = null - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/morgue) -"hSV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"hTc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"hTf" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"hTl" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - desc = "A powerful server tower housing various AI functions."; - name = "server tower"; - pixel_y = 16 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"hTp" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"hTt" = ( -/obj/structure/machinery/brig_cell/cell_1{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"hTF" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ - isopen = 1; - starting_helmet_type = null; - starting_mask_type = null; - starting_suit_type = null; - starting_tank_type = null - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"hTP" = ( -/obj/structure/machinery/door_control{ - id = "crate_room2"; - name = "storage shutters"; - pixel_y = 26 - }, -/obj/structure/machinery/recharge_station{ - desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; - name = "Working Joe charging station" - }, -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 36 - }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"hTT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 3 - }, -/obj/item/device/analyzer/plant_analyzer, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"hTU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"hUb" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"hUh" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"hUk" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/lower/engine_core) -"hUu" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"hUz" = ( -/obj/structure/largecrate/supply/supplies/mre{ - desc = "A supply crate containing everything you need to stop a CLF uprising."; - name = "\improper USCM crate 'FOB supplies'" - }, -/obj/item/folded_tent/big{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"hUU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/bodybags, -/obj/structure/machinery/light/small{ - dir = 4; - pixel_y = -12 - }, -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"hUW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"hVf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"hVz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"hVL" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"hWa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"hWr" = ( -/obj/effect/landmark/start/marine/smartgunner/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"hWs" = ( -/obj/structure/machinery/flasher_button{ - id = "briefing_flash"; - name = "Briefing Flasher"; - pixel_x = 32; - pixel_y = 27; - req_access_txt = "19" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"hWB" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"hWD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"hWH" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"hWJ" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"hWM" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"hWO" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cichallway) -"hXb" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"hXd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_box/magazine/misc/mre{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/storage/box/wy_mre{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"hXm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"hXq" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"hXD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"hXG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"hXX" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/port) -"hXY" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"hYf" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"hYj" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"hYn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"hYE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"hYG" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"hZe" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_engi"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"hZj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"hZw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"hZE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"hZJ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"hZN" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"hZZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"iaa" = ( -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"iag" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"iah" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"ial" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"iaq" = ( -/obj/structure/machinery/vending/cola, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"iat" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"iav" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering) -"iaF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"iaO" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"iaR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"ibc" = ( -/obj/structure/machinery/conveyor_switch{ - id = "req_belt" - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"ibf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"ibP" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"icp" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/hangar) -"icw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"icM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"icQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/fore_hallway) -"icZ" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) -"idx" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"idH" = ( -/obj/structure/platform/metal/almayer/north, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"idL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"idX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"ied" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"ien" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"ieu" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/stack/sheet/metal{ - layer = 4.1; - pixel_x = -3; - pixel_y = 14 - }, -/obj/item/tool/weldingtool{ - layer = 4.1; - pixel_x = 5; - pixel_y = 12 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/red{ - layer = 3.2 - }, -/obj/item/bedsheet/red{ - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"iey" = ( -/obj/structure/surface/table/almayer, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_lobby) -"ieX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"ifb" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"iff" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"ifi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform/metal/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ifz" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = 25 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"igb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"igr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"igs" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"igw" = ( -/obj/structure/sign/poster/ad{ - pixel_x = 30 - }, -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"igE" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"igS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"iho" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"ihw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"ihI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"ihM" = ( -/obj/structure/machinery/cm_vending/clothing/marine/delta{ - density = 0; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"ihW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ihX" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"ihY" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"iit" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"iiU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/fore_hallway) -"iiZ" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"ijd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"ijf" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/crap, -/obj/item/tool/crowbar, -/obj/structure/machinery/cell_charger, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"ijr" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"ijQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "SEA Office Shutters"; - name = "SEA Office Shutters"; - pixel_y = 12 - }, -/obj/item/ashtray/plastic{ - pixel_x = 8; - pixel_y = -4 - }, -/obj/structure/transmitter/rotary{ - name = "Senior Enlisted Advisor Office Telephone"; - phone_category = "Offices"; - phone_id = "Senior Enlisted Advisor's Office"; - pixel_x = -3 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"ijR" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/bed/sofa/south/white/right, -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/plush/therapy/random_color{ - pixel_y = -3 - }, -/obj/structure/sign/nosmoking_2{ - pixel_y = 29 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"ikl" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/vehiclehangar) -"iks" = ( -/obj/structure/pipes/binary/pump/high_power/on{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"ikv" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"ikA" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"ikQ" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/stamp/hop{ - name = "Commanding Officer's rubber stamp"; - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/tool/pen/blue/clicky{ - pixel_x = -6; - pixel_y = -3 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"ikT" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ilq" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"ily" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"ilG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/prop/almayer/hangar_stencil{ - icon_state = "dropship2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ilJ" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"iml" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"imo" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"imp" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/medical/morgue) -"imt" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"imy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"imS" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsUpper"; - name = "\improper ARES Core Shutters"; - plane = -7 - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 2; - id = "ares_vault_in"; - name = "aicore" - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"inh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-y" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"ins" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"inw" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering) -"inL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"ios" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"iow" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_y_offset = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"ioH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"ioM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"ioP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"ioU" = ( -/turf/closed/wall/almayer, -/area/almayer/command/securestorage) -"ioV" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"ipa" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"ipe" = ( -/obj/item/toy/crayon{ - name = "chewed crayon"; - pixel_y = 20; - uses = 1 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"ipk" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"ipn" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"ipB" = ( -/obj/structure/surface/rack, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/hatchet, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"ipE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/squads/alpha_bravo_shared) -"ipK" = ( -/obj/effect/step_trigger/message/memorial, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"ipM" = ( -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"ipQ" = ( -/obj/structure/surface/rack, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/item/storage/fancy/vials/empty, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -29 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"iqd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"iqo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"iqp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "37" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"iqH" = ( -/obj/item/trash/chips{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/trash/cheesie, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"iqR" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = -16 - }, -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"irr" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"irJ" = ( -/obj/item/tool/wirecutters{ - pixel_y = -7 - }, -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"irS" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/south1) -"irT" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"irU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"isa" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"ish" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop) -"iso" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/upper/midship_hallway) -"isq" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"isI" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = 32 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"isN" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/morgue) -"itg" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ito" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"itR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"itX" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"iub" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"iuf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"iuj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform_decoration/metal/almayer/east, -/obj/item/tool/warning_cone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"iun" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"iup" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"iur" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/cichallway) -"iuz" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/warhead, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"iuE" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"iuG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"iuI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ivf" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/camera, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"ivg" = ( -/obj/structure/janitorialcart, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/hallways/hangar) -"ivs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"ivu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"ivz" = ( -/obj/structure/closet, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"ivM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"ivS" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"iwf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"iwB" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/waterhazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"iwI" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - access_modified = 1; - name = "Storage"; - req_one_access_txt = "19;21" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"iwJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/entrance/west, -/area/almayer/medical/containment/cell) -"iwV" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/armory) -"iwW" = ( -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"iwZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/northwest, -/area/almayer/squads/req) -"ixj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"ixu" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"ixv" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"ixD" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"ixN" = ( -/obj/structure/largecrate, -/obj/item/folded_tent/reqs{ - pixel_x = -3; - pixel_y = 10 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"ixQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"ixT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"iyC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"iyE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"iyF" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"iyS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"izf" = ( -/obj/structure/disposalpipe/up/almayer{ - dir = 4; - id = "ares_vault_out"; - name = "aicore" - }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"izk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"izY" = ( -/obj/structure/machinery/autodoc_console, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"iAg" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/mp_bunks) -"iAw" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"iAz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/containment) -"iAE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"iAI" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"iBl" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/sign/safety/rewire{ - pixel_x = 7; - pixel_y = -30 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"iBn" = ( -/turf/closed/wall/almayer/aicore/white/hull, -/area/space) -"iBu" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"iBY" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"iCg" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/hallways/upper/midship_hallway) -"iCu" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"iCD" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"iCF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/offices) -"iCT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"iDa" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer/red/southwest, -/area/almayer/maint/upper/u_a_p) -"iDf" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"iDk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"iDs" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"iDK" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"iEa" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"iEe" = ( -/obj/structure/platform/metal/almayer/east, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"iEg" = ( -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/auxiliary_officer_office) -"iEr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"iEw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"iEx" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 26 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"iEz" = ( -/obj/structure/machinery/light, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 3 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"iEM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"iFc" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"iFn" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"iFp" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"iFA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Railguns and Viewing Room" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"iFC" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"iFD" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"iFH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"iFK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"iFM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"iFY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"iGc" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"iGi" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"iGn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_four) -"iGA" = ( -/obj/structure/bed/sofa/south/white/left, -/obj/structure/machinery/camera/autoname/almayer, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"iHc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"iHG" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cells) -"iIb" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_m_p) -"iIl" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"iIC" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/platform_decoration/metal/almayer/north, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"iIO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"iIP" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"iIR" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"iIU" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"iJs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"iJB" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"iJS" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"iJT" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"iKb" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"iKc" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"iKf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"iKw" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"iKy" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"iKD" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/device/flash, -/obj/item/device/binoculars, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"iKI" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/starboard_missiles) -"iKK" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"iKM" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/port_atmos) -"iKZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"iLf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/disk_reader, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"iLh" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"iLm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"iLq" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"iLs" = ( -/obj/structure/ladder{ - height = 1; - id = "med2" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/lower_medical_lobby) -"iLG" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"iLL" = ( -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) -"iLO" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"iMm" = ( -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"iMr" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"iMD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"iMI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"iNh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - name = "\improper Brig Cells" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"iNk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"iNH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/redcorner/east, -/area/almayer/hallways/lower/port_fore_hallway) -"iNR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"iNY" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"iOo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"iOD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"iOL" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"iOX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"iPf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"iPq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"iPt" = ( -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/lower/starboard_midship_hallway) -"iPv" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 8 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/living/briefing) -"iPD" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"iPH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"iPN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/maint/upper/mess) -"iPS" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"iQd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"iQi" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"iQj" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge4" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"iQt" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = -30; - pixel_y = 6; - serial_number = 12 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/living/port_emb) -"iQB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/card{ - dir = 4; - layer = 3.2; - pixel_y = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/secure_data{ - dir = 4; - layer = 2.99; - pixel_y = 23 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"iQJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"iRp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 8; - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/interrogation) -"iRy" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"iRN" = ( -/obj/structure/machinery/light/containment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"iSd" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"iSm" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - desc = "Do you remember who you are?"; - icon_state = "mirror_broke"; - name = "broken mirror"; - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/item/device/cassette_tape/nam{ - layer = 2.9; - pixel_x = -6; - pixel_y = 11 - }, -/obj/structure/machinery/door_control{ - id = "Delta_2"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/item/prop{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 29 - }, -/obj/item/prop{ - desc = "A bunch of tiny bits of shattered metal."; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "piece of shrapnel"; - pixel_x = -1; - pixel_y = 24 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"iSx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/upper/midship_hallway) -"iSV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"iSZ" = ( -/obj/effect/landmark/start/marine/engineer/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"iTd" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"iTe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"iTl" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) -"iTq" = ( -/obj/structure/curtain/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"iTt" = ( -/obj/structure/largecrate/supply/medicine/medivend{ - pixel_x = 3 - }, -/obj/structure/largecrate/random/mini/med{ - density = 1; - pixel_x = 3; - pixel_y = 11 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"iTw" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"iTD" = ( -/obj/effect/landmark/start/auxiliary_officer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/bridgebunks) -"iTI" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"iTQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"iTW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_n"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"iUh" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"iUk" = ( -/obj/structure/machinery/door/airlock/almayer/marine/charlie{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"iUm" = ( -/obj/structure/closet/emcloset{ - pixel_x = 8 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"iUo" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = -25 - }, -/obj/structure/surface/rack, -/obj/item/storage/box/autoinjectors{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/storage/box/beakers{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/storage/box/sprays{ - pixel_y = -3 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"iUG" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/shipboard/brig/medical) -"iUW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/tool/crowbar/red, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"iUX" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/interrogation) -"iVy" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"iVz" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"iVD" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_n"; - dir = 1; - name = "\improper Brig" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_bow) -"iVE" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"iVG" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"iVP" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/processing) -"iWa" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"iWc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"iWn" = ( -/obj/item/paper/almayer_storage, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"iWx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"iWB" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"iWH" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/structure/janitorialcart, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"iWJ" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"iWQ" = ( -/obj/effect/landmark/start/researcher, -/obj/effect/landmark/late_join/researcher, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"iWR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"iXb" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"iXm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"iXA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"iXB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"iXT" = ( -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"iXU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_y = 3 - }, -/obj/item/book/manual/evaguide, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"iXW" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"iYe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) -"iYf" = ( -/obj/structure/machinery/cm_vending/clothing/medical_crew{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/medical/hydroponics) -"iYm" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"iYt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"iYx" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"iZd" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"iZg" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"iZE" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"iZU" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"iZV" = ( -/obj/structure/machinery/door_control/cl/quarter/officedoor{ - pixel_x = 25 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"jac" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"jaf" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -27; - serial_number = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jao" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"jas" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"jay" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"jaz" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"jaI" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"jaM" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"jaR" = ( -/obj/structure/largecrate/random/mini/small_case/b{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = -7; - pixel_y = -1 - }, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/trash/crushed_cup{ - pixel_y = 12 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"jbq" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/command/lifeboat) -"jbt" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"jbH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"jbK" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"jbN" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "Brig Lockdown Shutters"; - name = "Brig Lockdown"; - pixel_x = -12; - pixel_y = 26 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown Override"; - pixel_x = -2; - pixel_y = 26 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4 - }, -/obj/structure/machinery/aicore_lockdown{ - icon_state = "big_red_button_wallv"; - pixel_x = 8; - pixel_y = 26 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"jbX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"jcf" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"jcu" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/fore_hallway) -"jcE" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"jcP" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/engineering/upper_engineering/starboard) -"jdm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"jdn" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"jdu" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jdC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jdG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_three) -"jdZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"jeb" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/alpha_bravo_shared) -"jei" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"jeq" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/pillbottles{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"jer" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"jev" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/device/taperecorder{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"jew" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"jez" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"jeO" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"jeQ" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/red/southeast, -/area/almayer/living/cryo_cells) -"jeR" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"jfy" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"jfK" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"jfS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"jfY" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/folder/red, -/obj/structure/transmitter/rotary{ - name = "Brig CMP's Office Telephone"; - phone_category = "MP Dept."; - phone_id = "Brig CMP's Office"; - pixel_x = 15 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"jfZ" = ( -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"jge" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"jgg" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"jgk" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"jgl" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"jgr" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/paper_bin/uscm{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -8; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"jgu" = ( -/obj/structure/platform/metal/almayer, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"jgw" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"jgJ" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/command/cichallway) -"jgK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"jgR" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = 32 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/mp_bunks) -"jhb" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = -6; - pixel_y = -6 - }, -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"jhc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"jhn" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_four) -"jhs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"jht" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"jhx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"jhy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/offices) -"jhA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"jhD" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"jhI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 4; - layer = 2.99; - pixel_y = 19 - }, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 4; - layer = 2.99; - name = "brig cameras console"; - pixel_y = 5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"jhK" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"jhQ" = ( -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/beret/cm, -/obj/item/clothing/head/beret/cm, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"jhR" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"jhS" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jhW" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"jic" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/lobby) -"jiH" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 4"; - layer = 2.1; - name = "Mounted Flash"; - pixel_x = -15; - pixel_y = 30 - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell/cl) -"jiM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"jiU" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"jjl" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jjS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/medical_science) -"jkj" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"jkl" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/morgue) -"jkq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"jks" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"jkz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/handcuffs{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/ids{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/box/handcuffs, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jkB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"jkD" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jkN" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"jkT" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"jlc" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"jlA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/containment) -"jlD" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"jlE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/deck/uno, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) -"jlG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/research/containment/entrance, -/area/almayer/medical/containment/cell) -"jlN" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = -6 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = 9 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"jlQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"jlT" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"jlX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/hand_labeler, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"jmn" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/magazine/dirty{ - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"jmz" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"jmK" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/cryo_cells) -"jmP" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"jmQ" = ( -/obj/effect/landmark/start/maint, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"jmY" = ( -/turf/open/floor/almayer/blue, -/area/almayer/command/cichallway) -"jnc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"jne" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"jnh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"jno" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"jnp" = ( -/obj/structure/surface/table/almayer, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/item/trash/cigbutt{ - pixel_x = -6; - pixel_y = -9 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"jnD" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/shipboard/brig/cic_hallway) -"jnI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"jnX" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/command/cic) -"joG" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 - }, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"jpl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_n"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"jpn" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/port) -"jpp" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"jpt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"jpD" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby2"; - name = "\improper RO Line 2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"jpW" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jqP" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 - }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"jqY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"jre" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"jri" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"jrm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"jru" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = 32 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = -32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"jrB" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"jrC" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"jrH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"jrI" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"jrM" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"jrR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/delta) -"jsa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"jsd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"jss" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/captain_mess) -"jsu" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"jsx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"jsA" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"jsE" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"jsP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"jsR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"jtj" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"jts" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) -"jtU" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"jtZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/hallways/lower/port_midship_hallway) -"juj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"juo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"juD" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"juS" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"jva" = ( -/obj/structure/closet, -/obj/structure/sign/safety/med_cryo{ - pixel_x = -17 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"jvc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"jvp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"jvt" = ( -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"jvB" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"jvD" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/port_fore_hallway) -"jvM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"jvP" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) -"jvX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"jvY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/telecomms) -"jwi" = ( -/obj/structure/machinery/door_control{ - id = "InnerShutter"; - name = "Inner Shutter"; - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"jwq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"jwr" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"jwK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha_bravo_shared) -"jwP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"jxi" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"jxq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"jxu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"jxx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"jxB" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/living/bridgebunks) -"jxX" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"jyb" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/processing) -"jyE" = ( -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"jyJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/ladder{ - height = 2; - id = "cicladder3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"jyR" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"jyY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigmaint_s"; - dir = 1; - name = "\improper Brig Maintenance" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "perma_lockdown_2"; - name = "\improper Perma Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"jzj" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform/metal/almayer, -/obj/structure/platform_decoration/metal/almayer/southwest, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south2) -"jzD" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"jzE" = ( -/obj/structure/closet/secure_closet/bar{ - name = "Success Cabinet"; - req_access_txt = "1" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"jzT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jAe" = ( -/obj/structure/surface/rack, -/obj/item/storage/beer_pack, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"jAj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/starboard_aft_hallway) -"jAB" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"jAJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"jBy" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/morgue) -"jBO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 3"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8 - }, -/area/almayer/medical/containment/cell) -"jCe" = ( -/obj/structure/machinery/computer/skills{ - req_one_access_txt = "200" - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/pen/clicky{ - pixel_x = 14; - plane = -5; - pixel_y = 2 - }, -/obj/item/tool/pen/clicky{ - pixel_x = 14; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"jCg" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) -"jCm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4 - }, -/obj/item/tool/stamp/approved{ - pixel_x = -3; - pixel_y = -11 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"jCn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"jCr" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"jCx" = ( -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"jCK" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"jCX" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"jDk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/transmitter{ - dir = 8; - name = "OT Telephone"; - phone_category = "Almayer"; - phone_id = "Ordnance Tech"; - pixel_x = 14 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"jDz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"jDO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"jDP" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper Spare Bomb Suit"; - req_one_access = null; - req_one_access_txt = "35" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"jEA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"jEM" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"jES" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"jEV" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -7 - }, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/mp_bunks) -"jFf" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"jFt" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"jFx" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"jFy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"jFE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"jFI" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"jFM" = ( -/obj/structure/surface/table/almayer, -/obj/item/attachable/lasersight, -/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ - pixel_x = 10; - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"jFY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"jGn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"jGI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"jGQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"jGR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"jHh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"jHn" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"jHt" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/repair_bay) -"jHC" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/computerlab) -"jHL" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"jHQ" = ( -/obj/structure/machinery/crema_switch{ - pixel_x = -24; - req_access_txt = "25" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"jIs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"jIC" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/mess) -"jIJ" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"jIM" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jIT" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig/chief, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"jIV" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"jJk" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/port_emb) -"jKn" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"jKF" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/turf/open/floor/plating, -/area/almayer/command/cichallway) -"jKI" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/port_atmos) -"jKK" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/green, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"jLg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/port_aft_hallway) -"jLj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"jLs" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"jLH" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"jLS" = ( -/obj/structure/bed/chair/comfy/charlie, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jMa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"jMm" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"jMr" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box{ - pixel_y = 4 - }, -/obj/structure/sign/safety/security{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"jMx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 11; - pixel_y = -26 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"jMy" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"jMG" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"jML" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"jMQ" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"jNc" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 3"; - locked = 1; - name = "\improper Containment Cell 3"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - dir = 4; - id = "Containment Cell 3"; - name = "\improper Containment Cell 3" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"jNo" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"jNw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/port_fore_hallway) -"jND" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"jNG" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jNK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"jNT" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution) -"jOi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/squads/bravo) -"jOk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/line_nexter_control{ - id = "line2"; - pixel_x = -4; - pixel_y = 10; - req_one_access_txt = "1;21" - }, -/obj/structure/machinery/door_control{ - id = "ROlobby2"; - name = "RO Line 2 Shutters"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "1;21" - }, -/obj/item/paper_bin/uscm{ - pixel_y = -4 - }, -/obj/item/tool/pen{ - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"jOo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/gym) -"jOq" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"jOt" = ( -/obj/item/trash/barcardine, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jOx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"jOD" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"jOE" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"jOG" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"jPd" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/engine_core) -"jPq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"jPu" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_x = 27 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"jPx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"jPP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"jPS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/chief_mp_office) -"jPU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"jQt" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"jRc" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"jRp" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/toy/deck{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jRz" = ( -/obj/effect/step_trigger/teleporter/random{ - affect_ghosts = 1; - name = "tele_ground1"; - teleport_x = 180; - teleport_x_offset = 200; - teleport_y = 50; - teleport_y_offset = 80; - teleport_z = 1; - teleport_z_offset = 1 - }, -/turf/closed/wall/almayer/outer, -/area/space) -"jRC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"jRH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"jRK" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"jSc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/machinery/cm_vending/gear/staff_officer_armory, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"jSo" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"jSp" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/squads/charlie) -"jSw" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"jSy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"jSU" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"jTj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/structure/machinery/computer/cameras/containment{ - dir = 8; - name = "Research Cameras"; - pixel_y = 10 - }, -/obj/structure/machinery/computer/research/main_terminal{ - dir = 8; - pixel_y = -3 - }, -/obj/structure/machinery/door_control{ - id = "CMO Shutters"; - name = "Office Shutters"; - req_access_txt = "5"; - pixel_x = -11; - pixel_y = -6 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"jTt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"jTB" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower) -"jTH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"jTI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie_delta_shared) -"jTU" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"jUb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"jUh" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"jUl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"jUq" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"jUx" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SL-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"jUF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"jUM" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"jUV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"jUY" = ( -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"jVa" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"jVg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"jVr" = ( -/obj/structure/machinery/cm_vending/clothing/marine/alpha{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"jVt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner3, -/area/almayer/medical/containment/cell) -"jVE" = ( -/turf/open/floor/almayer/test_floor5, -/area/almayer/command/computerlab) -"jWb" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"jWh" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/upper_engineering/port) -"jWr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"jWu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"jXc" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/starboard_hallway) -"jXd" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"jXf" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = "or03"; - name = "Lobby" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"jXk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/weapons/m39{ - pixel_x = 2 - }, -/obj/structure/largecrate/supply/weapons/m41a{ - layer = 3.1; - pixel_x = 6; - pixel_y = 17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"jXN" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) -"jXR" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"jYa" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"jYc" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 4.1; - name = "Sergeant Huggs"; - pixel_y = 15; - throwforce = 15 - }, -/obj/item/clothing/head/cmcap{ - layer = 4.1; - pixel_x = -1; - pixel_y = 22 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/blue, -/area/almayer/living/port_emb) -"jYm" = ( -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"jYH" = ( -/obj/structure/blocker/invisible_wall, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/mob/living/silicon/decoy/ship_ai{ - layer = 2.98; - pixel_y = -16 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"jYM" = ( -/obj/structure/ladder{ - height = 1; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/p_bow) -"jZd" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"jZe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"jZo" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"jZs" = ( -/obj/structure/machinery/light/containment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"jZu" = ( -/obj/structure/machinery/door_control{ - id = "CIC_Conference"; - name = "Conference Lockdown"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"jZv" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"jZC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"jZU" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/medical/containment/cell/cl) -"jZY" = ( -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/upper_medical) -"kac" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/hand_labeler, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"kaj" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"kak" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) -"kam" = ( -/obj/item/tool/screwdriver{ - layer = 2.9; - pixel_x = -21; - pixel_y = -14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"kan" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/lower_medical_medbay) -"kaq" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kaB" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/squads/alpha) -"kaE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/upper/midship_hallway) -"kaI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/charlie_delta_shared) -"kaO" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"kaQ" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/starboard_hallway) -"kaS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"kbc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 8 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"kbl" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"kbn" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/gm/grass/grass1, -/area/almayer/medical/upper_medical) -"kbv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"kbw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"kbx" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"kbJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/containment) -"kbX" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer/brig, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"kcg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"kcl" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/bravo) -"kcp" = ( -/turf/closed/wall/almayer, -/area/almayer/living/auxiliary_officer_office) -"kcs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"kcx" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_n"; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"kcA" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"kcG" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"kcH" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/synthcloset) -"kcN" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/commandbunks) -"kde" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"kdi" = ( -/obj/item/device/flashlight/pen{ - pixel_x = 4; - pixel_y = -6 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"kdn" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"kdo" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"kdv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"kdB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"keG" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation Observation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/interrogation) -"keO" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"keR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"kfB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"kfE" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"kfI" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"kfU" = ( -/turf/open/floor/plating, -/area/almayer/powered/agent) -"kgs" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_se_2"; - name = "\improper Research Window Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"kgt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kgD" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 35 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"kgT" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer, -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform_decoration/metal/almayer/southwest, -/obj/structure/platform_decoration/metal/almayer/northeast, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"kgV" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/upper/aft_hallway) -"khd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"khD" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"khE" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"khI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"kil" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/item/storage/belt/utility, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"kin" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"kio" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/closet, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"kiy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/lower/port_midship_hallway) -"kiG" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"kiM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"kiR" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) -"kiU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"kiV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"kiX" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kjk" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"kjw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"kjD" = ( -/obj/structure/machinery/computer/demo_sim{ - dir = 4; - pixel_x = -17; - pixel_y = 8 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"kjO" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/lower/engine_core) -"kjW" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/port_midship_hallway) -"kjY" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"kkd" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"kkk" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"kkt" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"kkv" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/machinery/light/small, -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/chief_mp_office) -"kkx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"kkN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"kkW" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/atmospipes, -/obj/item/circuitboard/airalarm, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"kln" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"klH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"klT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"kmd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"kmp" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"kmE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"kmH" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kmT" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/upper/fore_hallway) -"knb" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"kng" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"knl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"knm" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"knq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"knH" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = 32 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_lobby) -"knK" = ( -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood/gibs, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"knL" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south2) -"knU" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/aft_hallway) -"kon" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"kow" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"kox" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ - dir = 4; - id = "civ_uniforms" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/living/gym) -"koB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -27 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"koC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"koI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"kph" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"kpj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"kpo" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"kpL" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"kpQ" = ( -/obj/structure/machinery/door_control{ - id = "engidorm"; - pixel_x = 25; - pixel_y = 2 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"kqa" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"kqb" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"kqd" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"kqm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"kqo" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"kqt" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"kqv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"kqy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/tool/pen, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"kqB" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kqC" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"kqK" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"kqN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/basketball) -"krp" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"kry" = ( -/obj/structure/machinery/flasher{ - id = "Perma 1"; - pixel_y = 24 - }, -/obj/structure/machinery/camera/autoname/almayer/brig, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"krA" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_1"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"krG" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"krJ" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"krN" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"krO" = ( -/obj/structure/machinery/cm_vending/sorted/medical, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"krS" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"krU" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/tool/screwdriver, -/obj/item/bananapeel{ - desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; - icon = 'icons/obj/items/weapons/guns/attachments.dmi'; - icon_state = "iffbarrel"; - name = "Broken B8 Smart-Scope"; - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"krZ" = ( -/obj/structure/closet/secure_closet/cargotech, -/obj/item/clothing/accessory/storage/webbing, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"ksg" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"ksm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"ksp" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"ksw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) -"ksN" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/living/briefing) -"kti" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ktl" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ktQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow/west, -/area/almayer/command/airoom) -"ktR" = ( -/obj/item/trash/crushed_cup, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"ktX" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/living/grunt_rnr) -"kui" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/machinery/vending/security/riot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"kuk" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"kuu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"kuw" = ( -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/living/briefing) -"kuJ" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"kuK" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"kvf" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"kvh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"kvL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/warden_office) -"kvU" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"kwc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kwd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"kwg" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"kwi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"kwo" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"kws" = ( -/obj/structure/machinery/line_nexter/med{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"kwQ" = ( -/obj/item/tool/warning_cone{ - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kxd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"kxe" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"kxo" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"kxL" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/structure/largecrate/random/mini/wooden{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"kxP" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/mp_bunks) -"kxR" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform/metal/almayer, -/obj/structure/platform_decoration/metal/almayer/southwest, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"kya" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"kyh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"kyr" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/starboard) -"kyw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_s) -"kyN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"kyP" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_p) -"kyR" = ( -/obj/structure/safe/co_office, -/obj/item/weapon/pole/fancy_cane, -/obj/item/tool/lighter/zippo/gold{ - layer = 3.05; - pixel_y = 3 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kyX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"kyY" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"kzb" = ( -/obj/structure/machinery/vending/walkman, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"kzc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"kzk" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/command/computerlab) -"kzr" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/firingrange{ - pixel_x = 32; - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"kzs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"kzy" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"kzC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"kzK" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"kAh" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"kAj" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"kAm" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"kAv" = ( -/obj/structure/largecrate/supply/ammo/shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"kAL" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"kBo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"kBy" = ( -/obj/structure/machinery/ares/processor, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"kBP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"kBY" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/tankerbunks) -"kCd" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/lower/vehiclehangar) -"kCi" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/port_missiles) -"kCj" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"kCl" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = -6; - pixel_y = -3 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = 5; - pixel_y = -3 - }, -/obj/structure/noticeboard{ - desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; - pixel_y = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"kCm" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"kCu" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"kCE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"kCY" = ( -/obj/structure/machinery/sleep_console{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"kDd" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"kDk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 6 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"kDH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering) -"kDK" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kDR" = ( -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"kDZ" = ( -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"kEc" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"kEg" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/toy/deck/uno{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kEp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/sign/safety/rewire{ - pixel_x = -20; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"kEq" = ( -/obj/structure/machinery/door/window/ultra{ - dir = 8; - req_access_txt = "3" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"kEs" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/prop/helmetgarb/helmet_nvg/cosmetic, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"kEA" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"kEE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"kEW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"kFe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"kFs" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kFv" = ( -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_medbay) -"kFO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "crate_room2"; - name = "\improper Storage Shutters" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"kFU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"kFY" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 7 - }, -/turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) -"kGi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"kGu" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"kGw" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"kGF" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"kGQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"kGS" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"kHd" = ( -/obj/structure/machinery/computer/arcade, -/obj/item/prop/helmetgarb/spacejam_tickets{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/grunt_rnr) -"kHo" = ( -/obj/item/device/camera{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/camera_film, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"kHp" = ( -/obj/structure/bed/sofa/south/white/right, -/obj/structure/platform/metal/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"kHS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"kHY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"kIf" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"kIk" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"kIl" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"kIP" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"kJc" = ( -/obj/structure/ladder{ - height = 1; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/s_bow) -"kJh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kJi" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 14; - pixel_y = 20 - }, -/obj/item/trash/USCMtray{ - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"kJm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kJH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/freezer/industry, -/obj/item/reagent_container/glass/beaker/silver, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"kJW" = ( -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/shower{ - dir = 8; - layer = 3.10; - plane = -4 - }, -/obj/item/tool/soap{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/commandbunks) -"kJZ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"kKk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"kKB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) -"kKR" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"kKY" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_aft_hallway) -"kLc" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"kLk" = ( -/obj/structure/machinery/cm_vending/clothing/tl/bravo{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"kLm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"kLE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kLP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/greencorner/west, -/area/almayer/squads/req) -"kLT" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform_decoration/metal/almayer/northwest, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"kMp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"kMr" = ( -/obj/item/trash/uscm_mre, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"kMH" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 1"; - name = "Cell 1" - }, -/obj/structure/sign/safety/one{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"kMK" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/engineering/upper_engineering/port) -"kMR" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"kMV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"kMW" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"kNf" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"kNk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"kNl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"kNo" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"kNq" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_p) -"kNC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"kNO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = -9; - pixel_y = 4 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"kNV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/starboard) -"kNX" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"kNY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room) -"kOv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/port_missiles) -"kOB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = -6 - }, -/obj/item/tool/pen/blue{ - pixel_x = -6 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"kOH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"kOJ" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"kOR" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"kOW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"kPa" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/hallways/upper/fore_hallway) -"kPx" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/mass_spectrometer, -/obj/item/device/mass_spectrometer, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/dropper, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/obj/item/reagent_container/glass/beaker/cryoxadone, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/chemistry) -"kPB" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/basketball) -"kPG" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"kPH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"kPJ" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"kPR" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = -17 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"kPZ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"kQr" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/item/tool/lighter/random{ - pixel_x = 13 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"kQu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"kRd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_three) -"kRg" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"kRD" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"kRP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/prop/magazine/dirty/torn, -/obj/item/prop/magazine/dirty/torn/alt{ - pixel_x = 7; - pixel_y = 11 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"kRQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 8; - pixel_x = 17; - pixel_y = 7 - }, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 8; - pixel_x = 17; - pixel_y = -6 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"kSi" = ( -/obj/structure/machinery/cm_vending/gear/intelligence_officer{ - density = 0; - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"kSn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"kSv" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/hangar) -"kSy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Right"; - name = "ARES Mainframe Lockdown"; - pixel_x = -24; - pixel_y = 24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"kSA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"kSC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"kSH" = ( -/obj/structure/sign/prop1{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/security{ - pixel_x = -8 - }, -/obj/structure/filingcabinet/medical{ - pixel_x = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kST" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"kSU" = ( -/obj/structure/transmitter/no_dnd{ - name = "Requisition Telephone"; - phone_category = "Almayer"; - phone_id = "Requisition"; - pixel_y = 30 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"kTp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/medical) -"kTv" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"kTC" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 8; - vent_tag = "Access Hall" - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"kTN" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/ce_room) -"kTY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/medical{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"kUg" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"kUh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ - access_modified = 1; - dir = 1; - name = "\improper Flight Crew Quarters"; - req_one_access_txt = "19;22" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"kUo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"kUA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"kUI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kUJ" = ( -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"kUL" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"kUR" = ( -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"kUV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"kVy" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"kVV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"kVW" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"kVZ" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 2"; - name = "Cell 2" - }, -/obj/structure/sign/safety/two{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"kWk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/greencorner, -/area/almayer/squads/req) -"kWq" = ( -/obj/structure/sign/safety/synth_storage{ - pixel_x = 8; - pixel_y = 25 - }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/cichallway) -"kWI" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"kWN" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_x = -27 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"kWR" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/transmitter/rotary{ - name = "Commanding Officer's Office"; - phone_category = "Offices"; - phone_id = "Commanding Officer's Office"; - pixel_x = 16; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"kWT" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/living/pilotbunks) -"kXa" = ( -/obj/structure/machinery/cm_vending/clothing/marine/bravo{ - density = 0; - pixel_y = 16 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"kXf" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"kXm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = -7 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"kXt" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"kXu" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"kXw" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"kXN" = ( -/obj/item/clothing/glasses/sunglasses/aviator{ - pixel_x = -1; - pixel_y = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"kYb" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"kYl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"kYt" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/bible{ - desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; - name = "Holy Bible"; - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/rosary{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; - pixel_y = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"kYv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"kYF" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_s) -"kYL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"kYU" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"kYV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"kZc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"kZN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/auxiliary_officer_office) -"kZV" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"lab" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"lah" = ( -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/living/gym) -"lat" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"laD" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"laI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"laM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"laO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"laQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - name = "\improper Engineering Reception" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"laU" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Firing_Range_1"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"laV" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/command/cic) -"lbf" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"lbs" = ( -/obj/structure/sign/safety/biolab{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"lbB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"lbO" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"lbX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"lcg" = ( -/obj/structure/machinery/ares/substrate, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"lcp" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"lcy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"lcV" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"lcW" = ( -/obj/item/storage/donut_box{ - pixel_y = 8 - }, -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"ldb" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ldc" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/lower/workshop) -"lde" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"ldl" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"ldt" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_1"; - name = "treadmill" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ldC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"ldF" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"ldW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"lea" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/hydroponics) -"lef" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"leg" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/hallways/hangar) -"let" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"ley" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"leM" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"leY" = ( -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"lft" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/fire, -/obj/item/device/lightreplacer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"lfx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"lfz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"lfH" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"lfM" = ( -/obj/structure/platform/metal/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lfZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/meal5, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"lga" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"lgh" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform_decoration/metal/almayer/northeast, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 6; - pixel_x = 2 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"lgk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"lgt" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"lgy" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Firing_Range_2"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"lgF" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lhj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -34 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"lhs" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"lht" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"lhv" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/upper_medical) -"lhB" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"lhH" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 1; - vent_tag = "Comms" - }, -/turf/open/floor/almayer/aicore/no_build/ai_plates, -/area/almayer/command/airoom) -"lhJ" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 12; - pixel_y = 25 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"lhX" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"lia" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"lib" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"lid" = ( -/obj/structure/machinery/chem_master{ - vial_maker = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"liJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"liM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/door_control/cl/quarter/backdoor{ - pixel_x = 25 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"liY" = ( -/obj/structure/machinery/flasher{ - id = "Containment Cell 5"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/structure/machinery/iv_drip, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"liZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, -/obj/item/toy/dice/d20, -/obj/item/toy/deck/uno, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"ljf" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"ljm" = ( -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/structure/closet/crate, -/obj/item/clothing/suit/storage/hazardvest/black, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"ljs" = ( -/obj/effect/landmark/start/marine/spec/bravo, -/obj/effect/landmark/late_join/bravo, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"ljv" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"ljG" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/condiment/coldsauce, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"ljO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"ljS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"ljW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lka" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"lkd" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "kitchen2"; - name = "\improper Kitchen Shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"lkf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_y = -2; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/living/offices/flight) -"lkm" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"lkL" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 4 - }, -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"lkM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"lkV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"lkW" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/belt/medical/lifesaver/full, -/obj/item/clothing/glasses/hud/health, -/obj/item/device/radio/marine, -/obj/item/clothing/accessory/storage/surg_vest, -/obj/item/tool/portadialysis, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"lla" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"llo" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"llO" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/hangar) -"lma" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15 - }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"lml" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"lmq" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"lmw" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"lmz" = ( -/turf/closed/wall/almayer/aicore/hull, -/area/space) -"lmA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/numbertwobunks) -"lmG" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"lne" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"lnh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 8; - name = "\improper Chief MP's Office" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"lnm" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/living/briefing) -"lnt" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/shipboard/brig/cic_hallway) -"lnu" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/gym) -"lnP" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/window/reinforced, -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"lnS" = ( -/obj/structure/sign/safety/rewire{ - pixel_y = 38 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "ARES Operations Left"; - name = "ARES Operations Shutter"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"lok" = ( -/obj/structure/machinery/cm_vending/clothing/marine/charlie{ - density = 0; - layer = 4.1; - pixel_y = -29 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"lol" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"lou" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 5 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"loy" = ( -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_x = 27 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"loE" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"loK" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/adv, -/obj/item/tank/emergency_oxygen/double, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"loP" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/laundry) -"loS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"loV" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/obj/structure/machinery/scoreboard{ - id = "basketball"; - pixel_y = 30 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"loY" = ( -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"lpg" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - req_access = list(1) - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) -"lpl" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"lpt" = ( -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"lpy" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered/agent) -"lql" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"lqF" = ( -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_lobby) -"lqK" = ( -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/hallways/hangar) -"lqL" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/aft_hallway) -"lqN" = ( -/obj/item/device/assembly/mousetrap/armed, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/living/port_emb) -"lrq" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/armory) -"lrE" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/s_bow) -"lrF" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"lrH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"lrT" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"lrW" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"lrX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"lsn" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"lso" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"lsp" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"lsD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/living/offices/flight) -"lsV" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/weapon_room) -"ltb" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"ltc" = ( -/obj/effect/landmark/late_join/working_joe, -/obj/effect/landmark/start/working_joe, -/turf/open/floor/plating/plating_catwalk/aicore, -/area/almayer/command/airoom) -"ltm" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lto" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"ltv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"ltw" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"lty" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ltA" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"ltI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/northeast, -/area/almayer/squads/charlie) -"ltO" = ( -/obj/structure/closet/secure_closet{ - name = "\improper Lethal Injection Locker" - }, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/obj/item/reagent_container/ld50_syringe/choral, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"ltU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"lul" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Commanding Officer's Quarters"; - req_access = null; - req_access_txt = "31" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"luE" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"luS" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = -3 - }, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"luY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"luZ" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"lvb" = ( -/obj/structure/machinery/door_control/cl/office/door{ - pixel_y = 25 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lvh" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 10 - }, -/obj/structure/machinery/meter, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"lvA" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"lwh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lwp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/machinery/cm_vending/sorted/tech/circuits, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"lwy" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform/metal/almayer, -/obj/structure/platform_decoration/metal/almayer/southwest, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"lwC" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"lwG" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"lwJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie) -"lwY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"lxd" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"lxo" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"lxE" = ( -/obj/structure/machinery/cm_vending/clothing/commanding_officer, -/turf/open/floor/almayer/cargo, -/area/almayer/living/commandbunks) -"lxW" = ( -/obj/structure/sign/prop2{ - pixel_y = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"lxX" = ( -/obj/structure/platform/metal/almayer, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"lyh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/surgery/scalpel{ - pixel_x = -1; - pixel_y = 10 - }, -/obj/item/stack/cable_coil{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/stack/sheet/cardboard/small_stack{ - layer = 3.01; - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"lyk" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"lym" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"lyq" = ( -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"lyw" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"lyz" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/heart/prosthetic{ - pixel_x = -4 - }, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"lyE" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/command/computerlab) -"lyP" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"lyW" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_p) -"lyX" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = null; - req_access_txt = 37; - req_one_access = null - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"lza" = ( -/obj/structure/bed/sofa/vert/grey, -/obj/structure/bed/sofa/vert/grey/top{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"lze" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"lzq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"lzt" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/weapon/gun/rifle/l42a{ - pixel_x = 17; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"lzA" = ( -/obj/structure/bed/chair/comfy{ - dir = 5 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"lAa" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"lAl" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"lAu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"lAy" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"lAQ" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"lAW" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"lBg" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"lBl" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"lBv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"lCg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"lCm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"lCr" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"lCt" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/containment) -"lCE" = ( -/obj/structure/bed/chair/comfy/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"lCL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"lDa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lDk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"lDn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"lDA" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"lDL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"lDN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"lDT" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"lDV" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/obj/structure/sign/safety/cryo{ - pixel_y = 26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"lEe" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"lEf" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 1 - }, -/area/almayer/medical/containment/cell/cl) -"lEj" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering) -"lEv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/lobby) -"lEO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"lEV" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"lFe" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"lFh" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/port_emb) -"lFj" = ( -/obj/structure/machinery/door_control{ - id = "ARES Operations Right"; - name = "ARES Operations Shutter"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"lFn" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"lFp" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"lFr" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/mess) -"lFt" = ( -/obj/structure/machinery/portable_atmospherics/powered/pump, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/starboard_atmos) -"lFw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lFA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"lFK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"lFL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"lGg" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"lGh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"lHk" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"lHu" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/living/grunt_rnr) -"lHB" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"lHG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"lIj" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/mess) -"lIp" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"lIu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"lII" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/port_atmos) -"lIQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"lIU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"lIY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"lJu" = ( -/obj/structure/barricade/metal{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"lJv" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext"; - name = "\improper Research Window Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"lJD" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"lJG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"lJK" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"lJL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"lJM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"lJO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"lJY" = ( -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"lKa" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"lKb" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"lKM" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"lKO" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lLl" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/lower/port_fore_hallway) -"lLt" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/midship_hallway) -"lLA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"lLC" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"lLO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"lLS" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"lMb" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"lMc" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"lMp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"lMv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/medical_science) -"lMw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"lMx" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/starboard) -"lMy" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"lMF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_n"; - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"lMO" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"lMY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"lNk" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"lNw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"lNL" = ( -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"lNR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/lower/workshop) -"lOn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"lOr" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "crate_room"; - name = "\improper Storage Shutters" - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"lOH" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_two) -"lON" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_door"; - name = "\improper Research Doorway Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"lOX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"lPm" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lPB" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"lPC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"lPO" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/securestorage) -"lPY" = ( -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/upper/fore_hallway) -"lQa" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"lQf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"lQz" = ( -/obj/structure/machinery/vending/coffee, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"lQB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"lQG" = ( -/obj/structure/machinery/computer/tech_control, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"lQO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/operating_room_three) -"lRh" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/hallways/upper/midship_hallway) -"lRs" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_y = 20 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"lRt" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"lRP" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/chaplain_patch, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"lRX" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/hallways/hangar) -"lRZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"lSs" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 5"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"lSJ" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"lSK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform/metal/almayer, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"lSN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"lST" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_p) -"lSX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"lTt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"lTE" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/bible{ - desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; - name = "Holy Bible" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"lUA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/lower/port_fore_hallway) -"lUQ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"lVl" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"lVo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"lVS" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "south_central_checkpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"lVW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"lVX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Alpha Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Alpha Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"lWr" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"lWt" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"lWG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"lWO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"lWS" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"lWY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"lXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"lXg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"lXl" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"lXO" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/item/trash/popcorn{ - layer = 3.1; - pixel_x = -3; - pixel_y = 13 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"lXR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"lYg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"lYk" = ( -/obj/item/trash/c_tube{ - pixel_x = 16; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"lYt" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"lYL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"lYN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"lYS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"lZb" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"lZs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"lZI" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"lZJ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"lZM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/cryo_cells) -"lZZ" = ( -/obj/structure/machinery/autolathe/medilathe/full, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"maq" = ( -/obj/structure/platform/metal/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"may" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 16 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/starboard_hallway) -"maI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"maK" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"maL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/protein_pack, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"maO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"maT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/upper_medical) -"mbx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"mbR" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"mbZ" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"mcp" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/starboard_hallway) -"mcL" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"mcW" = ( -/obj/structure/morgue, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/morgue) -"mdk" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"mdm" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/upper/midship_hallway) -"mdo" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"mdC" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"mdW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/item/folder/white, -/obj/item/folder/white, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"mea" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/mp_bunks) -"mem" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"meu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"meE" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"meQ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"meT" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"meY" = ( -/turf/closed/wall/almayer{ - damage_cap = 15000 - }, -/area/almayer/squads/alpha) -"mfL" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"mfM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/device/megaphone, -/obj/structure/window/reinforced/ultra, -/obj/structure/window/reinforced/ultra{ - dir = 4 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/living/briefing) -"mfO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"mfQ" = ( -/turf/open/floor/almayer/no_build/plate, -/area/almayer/living/pilotbunks) -"mgb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"mgd" = ( -/obj/structure/machinery/autolathe/armylathe/full, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"mgj" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"mgu" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"mgy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"mgF" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"mha" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"mhd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"mhm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"mho" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mhG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"mhI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"mis" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_s) -"miy" = ( -/obj/structure/machinery/optable, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 29 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/shipboard/brig/medical) -"miE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"miV" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"mje" = ( -/obj/structure/machinery/light, -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"mjs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"mjt" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"mjy" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lower_garbage" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"mjS" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"mkc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/closet/crate/trashcart, -/obj/item/reagent_container/food/drinks/cans/souto, -/obj/item/reagent_container/food/snacks/margheritaslice{ - desc = "A slice of classic pizza ruined by the corps."; - name = "dirty margherita slice"; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8 - }, -/obj/item/bananapeel{ - desc = "Ew."; - gender = "plural"; - icon = 'icons/obj/items/shards.dmi'; - icon_state = "shrapnelsmall"; - name = "\improper finger nails"; - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/stack/medical/ointment{ - layer = 3.5; - pixel_x = -7; - pixel_y = 13 - }, -/obj/item/clothing/gloves/latex, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 11; - pixel_y = 7 - }, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"mki" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/bed/chair/comfy/alpha{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mkl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"mkn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"mkw" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"mkx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"mkF" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"mkG" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/engineering/port_atmos) -"mkH" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 - }, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"mkI" = ( -/obj/structure/machinery/pipedispenser, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"mkL" = ( -/obj/structure/pipes/valve/digital/open{ - dir = 4 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"mkN" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/target{ - desc = "'Such an insult (referring to Canton) can only be repaid in American blood. Mark my words, this will happen'-Kolonel Ganbaatar UPP Armed Forces"; - name = "Kolonel Ganbaatar" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"mkP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"mlb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"mlm" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/living/cryo_cells) -"mlF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"mlH" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"mlP" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - dir = 1; - name = "Corporate Liaison's Bedroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"mmn" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer{ - density = 0; - pixel_x = -32 - }, -/obj/structure/machinery/light{ - alpha = 0; - dir = 8; - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"mmN" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "researchlockdownext_se_2"; - name = "\improper Research Window Shutter" - }, -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/plating, -/area/almayer/medical/medical_science) -"mnc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"mnf" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/upper/midship_hallway) -"mng" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/living/briefing) -"mnA" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mnB" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) -"mnI" = ( -/turf/open/floor/almayer/blue, -/area/almayer/living/briefing) -"mnW" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/reagent_scanner{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clipboard{ - pixel_x = 8 - }, -/obj/item/paper{ - pixel_x = 8 - }, -/obj/effect/spawner/random/toolbox{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"moc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"mor" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mov" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"moB" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/cells) -"moI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha_bravo_shared) -"moK" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"moL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"moM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"moQ" = ( -/turf/open/floor/almayer/silver, -/area/almayer/living/briefing) -"mph" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"mpn" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"mpA" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"mpJ" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"mpP" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"mpV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_umbilical) -"mpZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"mqb" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"mqg" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"mqh" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"mqt" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/hallways/lower/port_midship_hallway) -"mqB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/port_umbilical) -"mqK" = ( -/obj/structure/machinery/cm_vending/gear/spec, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"mqU" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"mrD" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mrL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/gm/grass/grass1, -/area/almayer/medical/upper_medical) -"mrM" = ( -/obj/structure/closet/secure_closet/quartermaster_uscm, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"msg" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_y = -32 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 14; - pixel_y = -32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"msi" = ( -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = 7; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - layer = 2.9; - pixel_x = -8; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/containment) -"msm" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"msC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"msP" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"msS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"msZ" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"mtl" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/execution) -"mto" = ( -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"mtr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = -29 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"mtD" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"mtM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"mtZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"mua" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"mub" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"muq" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/obj/structure/bed/sofa/vert/grey{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"mux" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"muy" = ( -/obj/effect/landmark/start/marine/engineer/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"muQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"muV" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/faxmachine/uscm/command/capt{ - name = "Commanding Officer's Fax Machine"; - pixel_x = -4; - pixel_y = 3 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"muW" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"mvg" = ( -/obj/docking_port/stationary/escape_pod/west, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"mvi" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/m44{ - desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"mvl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/bluecorner, -/area/almayer/squads/delta) -"mvy" = ( -/obj/effect/landmark/start/marine/delta, -/obj/effect/landmark/late_join/delta, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"mvI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/barricade/handrail/medical{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"mww" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"mwA" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"mwL" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law, -/turf/open/floor/wood/ship, -/area/almayer/living/chapel) -"mwM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"mwP" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"mwR" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/stair_clone/upper) -"mxo" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_p) -"mxq" = ( -/obj/structure/machinery/door_control/cl/office/door{ - pixel_y = -20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) -"mxT" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"mxV" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"myl" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north{ - cell_type = /obj/item/cell/hyper - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"myo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/soft/purple, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"myJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"myP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"mza" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/armory) -"mzg" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"mzn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"mzq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/hydroponics) -"mzs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"mzv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mzz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"mzF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"mzI" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"mzP" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown2"; - vector_x = 102; - vector_y = -61 - }, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"mzS" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north2) -"mzV" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/living/port_emb) -"mAe" = ( -/obj/structure/window/framed/almayer/aicore/hull/black/hijack_bustable, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown{ - dir = 4; - plane = -6 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"mAp" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mAC" = ( -/obj/structure/platform/metal/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"mAF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"mAT" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"mAV" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"mAY" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"mBa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mBc" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/charlie_delta_shared) -"mBe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/pilotbunks) -"mBk" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/pill/happy{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_x = 4; - pixel_y = 15 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_x = -8; - pixel_y = 13 - }, -/obj/item/tool/surgery/bonegel/empty{ - layer = 3.01; - pixel_x = -5; - pixel_y = 19 - }, -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"mBx" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"mBO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"mCg" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_p) -"mCo" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"mCp" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"mCx" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - access_modified = 1; - dir = 1; - name = "\improper AI Reception"; - req_access = null; - req_one_access_txt = "91;92" - }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs1"; - name = "\improper ARES Reception Shutters" - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"mCE" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"mCJ" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_p) -"mCL" = ( -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"mDj" = ( -/obj/structure/machinery/photocopier, -/obj/item/paper{ - color = "grey"; - info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; - name = "photocopied image"; - pixel_y = 5 - }, -/obj/structure/sign/safety/rad_shield{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"mDG" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"mDJ" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"mDL" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/mousetraps, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"mDT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"mDW" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/briefing) -"mDX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - id_tag = "CO-Office"; - name = "\improper Commanding Officer's Office"; - req_access = null; - req_access_txt = "31" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"mDZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"mEs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "ARES Interior"; - explo_proof = 1; - name = "ARES Chamber Lockdown"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/door/poddoor/railing{ - closed_layer = 4; - density = 0; - id = "ARES Railing"; - layer = 2.1; - open_layer = 2.1; - unacidable = 0; - unslashable = 0 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"mFc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"mFq" = ( -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_door"; - name = "Door Shutters"; - pixel_y = 29; - req_access_txt = "28" - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"mFL" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"mFN" = ( -/obj/effect/step_trigger/ares_alert/mainframe, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Mainframe Right"; - name = "\improper ARES Mainframe Shutters"; - plane = -7 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"mFO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"mFP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"mFQ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/s_bow) -"mGb" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"mGe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"mGu" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"mGM" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 4; - id = "almayerlink_med_req" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mGT" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/closet/cabinet, -/obj/item/clipboard, -/obj/item/storage/lockbox/loyalty, -/obj/item/storage/briefcase, -/obj/item/reagent_container/spray/pepper, -/obj/item/device/eftpos{ - eftpos_name = "Weyland-Yutani EFTPOS scanner" - }, -/obj/item/device/portable_vendor/corporate, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"mHb" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"mHo" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"mHx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"mHz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/chief_mp_office) -"mHD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"mHF" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/headband/red{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"mHO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"mHT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/maint/upper/u_a_s) -"mHY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"mId" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/riot/marine/vintage_riot, -/obj/item/clothing/head/helmet/riot/vintage_riot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"mIo" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"mIy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"mIz" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/obj/item/prop/magazine/book/bladerunner{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mIJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 6 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"mIP" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"mIR" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"mJa" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/boonie, -/obj/item/trash/chunk/hunk, -/obj/item/trash/crushed_cup, -/obj/item/trash/uscm_mre, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"mJe" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"mJi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"mJj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/alpha) -"mJu" = ( -/turf/open/floor/almayer/uscm/directional, -/area/almayer/command/cic) -"mJx" = ( -/obj/structure/prop/server_equipment/broken, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"mJL" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/pilotbunks) -"mJO" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_p) -"mJP" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/squads/bravo) -"mKb" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/squads/alpha) -"mKi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"mKq" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/living/bridgebunks) -"mKs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"mKw" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"mKx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"mKy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"mKJ" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"mKN" = ( -/obj/effect/landmark/start/pilot/cas_pilot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"mLg" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"mLz" = ( -/obj/structure/machinery/door_control{ - id = "pobunk1"; - name = "PO1 Privacy Shutters"; - pixel_x = -24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"mLF" = ( -/obj/effect/landmark/start/marine/medic/bravo, -/obj/effect/landmark/late_join/bravo, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"mLN" = ( -/obj/structure/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"mLR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"mMP" = ( -/obj/effect/landmark/start/intel, -/obj/effect/landmark/late_join/intel, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"mMV" = ( -/obj/structure/pipes/vents/scrubber, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"mNp" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/bed/sofa/south/white/left, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"mNG" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_y = 24; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"mNI" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/morgue) -"mNK" = ( -/obj/structure/closet/secure_closet/brig/restraints, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"mNX" = ( -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"mOb" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"mOg" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"mOi" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/command/airoom) -"mOE" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"mOZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/midship_hallway) -"mPc" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"mPf" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/command/lifeboat) -"mPh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering South Hall" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"mPj" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"mPn" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"mPw" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"mPM" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_midship_hallway) -"mPR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mQc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"mQd" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/tool/weldpack, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"mQn" = ( -/obj/structure/sign/safety/rad_shield{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/engine_core) -"mQx" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"mQC" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"mQY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"mRn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES Interior"; - name = "\improper ARES Inner Chamber Shutters"; - plane = -7 - }, -/obj/effect/step_trigger/ares_alert/core, -/obj/structure/sign/safety/terminal{ - pixel_x = -18; - pixel_y = -8 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = -18; - pixel_y = 6 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"mRq" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"mRH" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 18 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"mRI" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_s) -"mRJ" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/hallways/upper/midship_hallway) -"mRQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"mRU" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) -"mRW" = ( -/turf/open/floor/almayer/research/containment/corner1, -/area/almayer/medical/containment/cell/cl) -"mSi" = ( -/obj/structure/bed/sofa/vert/grey/top{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"mSl" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/clothing/glasses/mgoggles, -/obj/item/clothing/glasses/mgoggles, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"mSo" = ( -/obj/structure/surface/rack, -/obj/item/facepaint/sniper, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"mSr" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"mSs" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"mSz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/crew/alt, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"mSK" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"mSM" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"mSU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/blue, -/area/almayer/squads/charlie_delta_shared) -"mTc" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/emails{ - dir = 4; - pixel_y = 2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"mTd" = ( -/obj/structure/machinery/smartfridge/chemistry{ - pixel_x = -3; - pixel_y = -1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"mTi" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"mTm" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/navigation) -"mTp" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/machinery/cm_vending/clothing/medical_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/medical/hydroponics) -"mTr" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = 24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Main Corridor"; - dir = 8; - pixel_y = 2 - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"mTL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"mTN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"mUq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"mUx" = ( -/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"mUE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"mUP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"mUY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"mVh" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"mVr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"mVA" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"mVE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_y = 26; - req_one_access_txt = "3;22;19;7" - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"mVF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "officers_mess"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;30" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"mWp" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"mWs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"mWy" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"mWD" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"mWJ" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"mWQ" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/obj/structure/sign/banners/maximumeffort{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/squads/delta) -"mWV" = ( -/obj/structure/bed/chair/comfy/blue, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"mWW" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 10 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"mXj" = ( -/turf/closed/wall/almayer, -/area/almayer/living/commandbunks) -"mXm" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"mYt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"mYv" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - negdir = 4; - posdir = 1 - }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"mYA" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"mZb" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/command/cichallway) -"mZc" = ( -/obj/structure/sign/poster/blacklight{ - pixel_y = 35 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/reagent_dispensers/beerkeg/alt_dark{ - anchored = 1; - chemical = null; - density = 0; - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"mZf" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/reagent_container/food/snacks/meatpizzaslice{ - pixel_x = -5; - pixel_y = 7 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"mZr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"mZF" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "s_engi_ext" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"mZL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"mZM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/navigation) -"mZP" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"mZQ" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/light, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"naa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nac" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"nah" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/item/desk_bell{ - anchored = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/lobby) -"naj" = ( -/obj/structure/machinery/door_control{ - id = "ARES JoeCryo"; - name = "ARES WorkingJoe Bay Shutters"; - pixel_x = -24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"nar" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"nau" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"naw" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OTStore"; - name = "\improper Secure Storage"; - unacidable = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"naB" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/perma) -"naK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"naR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/sleep_console{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"naV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Gym" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"nbu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"nbH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"ncf" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"nci" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ncl" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/lobby) -"ncp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"ncx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Emergency Air Storage" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"ncE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/autodispenser{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"ncG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) -"ncT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"ndl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"ndm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"ndZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"nec" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"nef" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"ner" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"new" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"nex" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"neC" = ( -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/processing) -"neF" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform_decoration/metal/almayer/northeast, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"neG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"neH" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"neO" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/navigation) -"neS" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"neT" = ( -/obj/structure/transmitter/rotary{ - name = "CL Office Telephone"; - phone_category = "Offices"; - phone_id = "CL Office" - }, -/obj/structure/surface/table/woodentable/fancy, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"neZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"nfa" = ( -/obj/structure/platform/metal/almayer/east, -/obj/structure/stairs/perspective{ - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"nff" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"nfC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"nfF" = ( -/obj/structure/ship_ammo/sentry, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"ngf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"ngn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"ngr" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = -17 - }, -/obj/structure/bed/sofa/south/grey/left, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/lobby) -"ngw" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/frag, -/obj/item/mortar_shell/frag, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"ngA" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"ngI" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/briefing) -"ngK" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"ngU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"ngV" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/storage/xeno_tag_case/full{ - pixel_y = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"nhi" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/window/reinforced/ultra, -/turf/open/floor/almayer/silver, -/area/almayer/living/briefing) -"nhr" = ( -/obj/structure/ladder{ - height = 1; - id = "engineeringladder" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/workshop) -"nhw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"nhx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck{ - desc = "A simple deck of playing cards. You could play Caravan with these!"; - pixel_y = 12 - }, -/obj/item/toy/deck/uno{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"nhE" = ( -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nhG" = ( -/obj/item/newspaper{ - name = "character sheet" - }, -/obj/item/device/cassette_tape/heavymetal{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/toy/dice, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/door_control{ - id = "courtyard window"; - name = "Privacy Shutters"; - pixel_x = -8; - pixel_y = -6; - req_access_txt = "3" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"nhN" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"nhV" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"nic" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stern) -"nig" = ( -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"nii" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"nik" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"nim" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - access_modified = 1; - dir = 2; - name = "\improper Chief Engineer's Office"; - req_one_access = null; - req_one_access_txt = "1;6" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CE Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/ce_room) -"nis" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"niv" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"niF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/medical_science) -"niL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/bed/chair, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"niR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"niY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"nja" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"njd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"njk" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"njn" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_s) -"njv" = ( -/obj/structure/platform/metal/almayer/north, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"njD" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south1) -"njJ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/item/toy/crayon/blue{ - pixel_x = -9; - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"njO" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"njS" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"nkc" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"nkj" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"nkn" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"nkr" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform_decoration/metal/almayer/northwest, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north2) -"nks" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2; - pixel_x = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"nkx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"nkF" = ( -/obj/structure/bed/chair/bolted{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"nkH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"nkK" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresDown2"; - vector_x = 102; - vector_y = -61 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"nkX" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/computer/cameras/almayer/ares{ - dir = 4; - pixel_y = 5 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"nlh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"nlz" = ( -/obj/structure/machinery/brig_cell/cell_3{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"nlB" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/living/briefing) -"nlI" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"nlQ" = ( -/obj/structure/platform/metal/almayer/east, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nlW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"nme" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/port) -"nmh" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"nmp" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"nmH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"nmK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"nmV" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/command/securestorage) -"nmY" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/lower/workshop/hangar) -"nne" = ( -/obj/structure/ladder{ - height = 2; - id = "bridge2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"nnr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/lower/port_aft_hallway) -"nny" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"nnD" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/stair_clone/upper) -"nnL" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliaison) -"nnX" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"noe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/aft_hallway) -"noj" = ( -/obj/structure/largecrate, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = 1; - pixel_y = 10 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"noo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_s"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"nop" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"nos" = ( -/obj/structure/machinery/chem_storage/medbay{ - dir = 1 - }, -/obj/structure/machinery/chem_storage/research{ - dir = 1; - layer = 3; - pixel_y = 18 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"nou" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"noy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"noE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"noH" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"noI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"noO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"noP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"nph" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/engineering/starboard_atmos) -"npq" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 8; - id = "ares_vault_in"; - name = "aicore" - }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"npr" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform_decoration/metal/almayer/northeast, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) -"npt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"npw" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/starboard_midship_hallway) -"npA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"npO" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"nqe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"nqx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"nqO" = ( -/obj/structure/closet/secure_closet/fridge/fish/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"nqW" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"nrb" = ( -/obj/item/robot_parts/arm/l_arm, -/obj/item/robot_parts/leg/l_leg, -/obj/item/robot_parts/arm/r_arm, -/obj/item/robot_parts/leg/r_leg, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"nri" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/working_joe{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"nrw" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/squads/charlie) -"nrN" = ( -/obj/structure/machinery/sleep_console, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"nrO" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"nsc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"nsd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"nso" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"nsr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"nsH" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/hallways/upper/midship_hallway) -"nsQ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/captain_mess) -"nsY" = ( -/turf/closed/wall/almayer, -/area/almayer/living/port_emb) -"ntd" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/clipboard{ - pixel_x = 12 - }, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/structure/sign/ROcreed{ - pixel_y = 30 - }, -/obj/item/device/flashlight/lamp{ - pixel_y = -11; - pixel_x = 7 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"ntj" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/computerlab) -"ntx" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_2"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"ntI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"nul" = ( -/obj/structure/platform/metal/almayer/east, -/obj/structure/stairs/perspective{ - dir = 9; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"nux" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "perma_lockdown_1"; - name = "\improper Perma Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"nuA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"nuK" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"nuM" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south2) -"nuN" = ( -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"nuZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"nve" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"nvz" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south2) -"nvG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/structure/mirror{ - pixel_y = 21 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"nvI" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"nvM" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/medical/chemistry) -"nvT" = ( -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"nvX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 8; - pixel_y = -4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"nwb" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"nwi" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"nwx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/port_missiles) -"nwD" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/command/cic) -"nwG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"nwL" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"nwU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"nwW" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"nwY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"nxb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/workshop) -"nxe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/sheet/metal{ - desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; - icon = 'icons/obj/structures/props/semiotic_standard.dmi'; - icon_state = "coffee"; - name = "coffee semiotic"; - pixel_x = 20; - pixel_y = 12; - singular_name = "coffee semiotic" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nxx" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"nyj" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"nyw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"nyK" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/hallways/upper/fore_hallway) -"nyQ" = ( -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"nyS" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"nzi" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"nzt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"nzv" = ( -/obj/structure/bed/sofa/south/white/right, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/upper_medical) -"nzD" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"nzO" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"nzT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "brignorth"; - name = "\improper Brig Lobby" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"nAd" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"nAm" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"nAv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"nAY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"nBa" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"nBi" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/monocle, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -7; - pixel_y = -2 - }, -/obj/item/weapon/pole/fancy_cane{ - pixel_x = 5 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"nBw" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/living/briefing) -"nBE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"nBF" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"nBJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/s_bow) -"nBK" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north2) -"nBV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"nCe" = ( -/obj/structure/machinery/prop/almayer/computer{ - pixel_y = 20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"nCf" = ( -/obj/effect/landmark/start/marine/tl/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"nCj" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 4; - pixel_y = 12 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 4; - name = "Remote dropship navigation computer"; - pixel_y = -12 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"nCn" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"nCp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"nCx" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; - pixel_x = 3; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 11; - pixel_y = 16 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/pipe{ - layer = 2.8; - pixel_x = 14 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"nCD" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"nCM" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"nCR" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 29 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/auxiliary_officer_office) -"nCT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"nDa" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"nDb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"nDo" = ( -/obj/structure/closet/l3closet/general, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"nDH" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"nDM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"nEc" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"nEl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"nEo" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/donut_box{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"nEF" = ( -/obj/structure/machinery/conveyor_switch{ - id = "gym_1"; - name = "treadmill switch" - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"nEH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/computer/research{ - dir = 4; - pixel_y = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = -6; - pixel_y = -5 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"nEJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"nEO" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"nEZ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"nFm" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/surgery/scalpel, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"nFs" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"nFA" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nFI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/structure/sign/poster{ - desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; - icon_state = "poster7"; - name = "EAT - poster"; - pixel_y = 30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"nFK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"nFX" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"nGh" = ( -/obj/structure/bed/chair{ - buckling_y = 5; - dir = 1; - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"nGi" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"nGk" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"nGD" = ( -/obj/structure/machinery/door/poddoor/almayer/blended/liaison{ - id = "RoomDivider" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"nGM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"nGY" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/north2) -"nHp" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - id = "Containment Cell 4"; - name = "\improper Containment Cell 4" - }, -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 4"; - locked = 1; - name = "\improper Containment Cell 4" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell/cl) -"nHu" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"nHG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"nHJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"nHL" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/sign/safety/coffee{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"nHP" = ( -/obj/structure/machinery/light/double/blue{ - dir = 1; - light_color = "#a7dbc7" - }, -/turf/open/gm/grass/grass1, -/area/almayer/medical/upper_medical) -"nHX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"nIj" = ( -/turf/open/floor/almayer/green, -/area/almayer/living/offices) -"nIt" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/starboard_missiles) -"nID" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin{ - pixel_x = -7 - }, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/tool/pen{ - pixel_y = 3 - }, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"nIE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"nIG" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/securestorage) -"nIN" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_p) -"nIS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/basketball) -"nJa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/lower/engine_core) -"nJk" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"nJs" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"nJu" = ( -/obj/item/newspaper, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"nJH" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"nKn" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"nKq" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"nKO" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "take-ins"; - pixel_x = 7; - pixel_y = 28; - range = 0 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"nKP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"nLk" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"nLp" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_p) -"nLt" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/req) -"nLI" = ( -/obj/structure/sign/safety/terminal{ - layer = 2.5; - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/chem_simulator{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"nLJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"nMe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"nMp" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"nMV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/upper_medical) -"nNg" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"nNt" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"nNv" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"nNx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"nNA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"nNH" = ( -/turf/open/floor/almayer/emeraldcorner/north, -/area/almayer/living/briefing) -"nNT" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"nNV" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie_delta_shared) -"nNX" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock PU-1"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"nNY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"nOb" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_y = -3; - pixel_x = 4; - plane = -5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4; - pixel_y = -3; - plane = -5 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"nOp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"nOx" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"nOC" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"nOX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"nPa" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"nPb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"nPf" = ( -/obj/structure/machinery/computer/cameras/almayer/containment{ - dir = 8; - pixel_x = -4; - pixel_y = 6 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/structure/machinery/door_control{ - id = "containmentlockdown_S"; - name = "Containment Lockdown"; - pixel_x = -5; - pixel_y = -4; - req_one_access_txt = "19;28" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"nPs" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"nPx" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"nPB" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/hangar) -"nPE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/centrifuge{ - pixel_y = 7 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"nPO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/maint/hull/lower/l_m_s) -"nPT" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; - dir = 4; - id = "crate_room4"; - name = "dilapidated storage shutters" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"nPY" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/command/lifeboat) -"nQn" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"nQo" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"nQv" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/squads/req) -"nQA" = ( -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"nRA" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/port_midship_hallway) -"nRE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"nRH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"nRN" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"nRR" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"nRX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"nSk" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"nSq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"nSu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"nSw" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"nSG" = ( -/obj/structure/machinery/door_control{ - id = "tcomms"; - name = "Telecommunications Entrance"; - pixel_y = 25 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/telecomms) -"nSS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"nTl" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/black, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"nTo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/transmitter{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 - }, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"nTs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"nTA" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"nTH" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"nTR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"nTZ" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/living/gym) -"nUa" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"nUd" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_container/spray/cleaner{ - layer = 3.2; - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 3; - pixel_y = 12 - }, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"nUj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 2"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"nUm" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 12; - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"nUn" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"nUv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"nVa" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"nVi" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"nVm" = ( -/obj/structure/machinery/door_control{ - id = "firearm_storage_armory"; - name = "Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"nVn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"nVq" = ( -/obj/structure/sign/safety/security{ - pixel_x = -17; - pixel_y = 6 - }, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"nVB" = ( -/turf/open/floor/almayer, -/area/almayer/command/securestorage) -"nVE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"nVF" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"nVQ" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"nVR" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/perma) -"nVX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D1"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"nWf" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"nWN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"nWS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"nXo" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"nXG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"nXO" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar{ - layer = 3.04; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -11; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -2; - pixel_y = 16 - }, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = 7; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"nXU" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 1; - name = "\improper Requisitions Storage" - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 4; - id = "almayerlink_OT1_req" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"nXV" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"nYc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"nYd" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"nYg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"nYi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"nYn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"nYp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"nYD" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/operating_room_four) -"nYE" = ( -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/command/lifeboat) -"nYR" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"nZf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"nZm" = ( -/obj/structure/machinery/door_control{ - access_modified = 1; - id = "OTStore"; - name = "Shutters"; - pixel_y = 24; - req_one_access_txt = "35" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"nZy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/facepaint/black, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"nZK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"nZR" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"nZW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"oap" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/upper_medical) -"oaw" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"oaK" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"oaO" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/machinery/recycler, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/maint/hull/lower/l_a_p) -"oaP" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/cmcap, -/obj/item/clothing/head/cmcap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"oaW" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"obo" = ( -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink_med1_req" - }, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"oby" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"obC" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/engineering/port_atmos) -"obE" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"obQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"ocf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"ocm" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/machinery/space_heater, -/obj/item/ashtray/glass{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"ocB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 24 - }, -/obj/structure/sign/safety/fibre_optics{ - pixel_x = 14; - pixel_y = 38 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 - }, -/obj/structure/sign/safety/laser{ - pixel_y = 24 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = 38 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"ocL" = ( -/obj/structure/machinery/cryopod/right{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) -"odb" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"ode" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_bow) -"odl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"odt" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"odu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/command/lifeboat) -"odB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"odD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"odN" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "SEA Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/sea_office) -"odV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"oee" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/command/lifeboat) -"oef" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha_bravo_shared) -"oer" = ( -/turf/closed/wall/almayer{ - damage_cap = 15000 - }, -/area/almayer/squads/delta) -"oes" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"oex" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"oeB" = ( -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/processing) -"oeH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"oeM" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"oeZ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/medical) -"ofH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"ofK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"ofU" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"ofY" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - explo_proof = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - layer = 3.3; - pixel_y = 6 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ogK" = ( -/obj/structure/bed/bedroll{ - desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; - name = "cat bed" - }, -/obj/structure/machinery/firealarm{ - pixel_x = -1; - pixel_y = 28 - }, -/mob/living/simple_animal/cat/Jones{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"ogT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"ohi" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"ohj" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"ohu" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig Maintenance" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_bow) -"ohA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/weapon_room) -"ohB" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"ohE" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"ohH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D3"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"ohI" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ohJ" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"ohL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/north2) -"ohS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/captain_mess) -"oif" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"oih" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/bed{ - icon_state = "abed"; - layer = 3.5; - pixel_y = 12 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_y = 4 - }, -/obj/item/bedsheet/orange{ - pixel_y = 12 - }, -/obj/item/bedsheet/orange{ - layer = 3.2 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"oiq" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"oir" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer/hardened/east, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"oit" = ( -/obj/effect/landmark/railgun_computer{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"oix" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"oiz" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 2; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigwarden"; - dir = 1; - name = "\improper Warden's Office" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"oiL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"oiQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"oiX" = ( -/obj/docking_port/stationary/vehicle_elevator/almayer, -/turf/open/floor/almayer/empty/vehicle_bay, -/area/almayer/hallways/lower/vehiclehangar) -"oiY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/disposal, -/obj/structure/sink{ - pixel_x = 1; - pixel_y = -2 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"ojh" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"ojp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Containment Cell 4"; - name = "Control Panel"; - pixel_x = -17; - req_access_txt = "200"; - pixel_y = 9 - }, -/obj/item/storage/photo_album, -/obj/structure/machinery/computer/cameras/containment/hidden{ - dir = 4; - pixel_x = -17; - pixel_y = -5; - plane = -5 - }, -/obj/item/device/camera_film{ - pixel_x = -3 - }, -/obj/structure/machinery/door_control/cl/office/divider{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"ojF" = ( -/obj/structure/machinery/cm_vending/clothing/tl/charlie{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"ojH" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/starboard) -"ojQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = -5; - pixel_y = 10 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"ojX" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_p) -"ojZ" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"oka" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"okd" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "n_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"okg" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"okD" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer6" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"old" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"olF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/midship_hallway) -"olM" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"olN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"olO" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"olQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"olU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/command/cichallway) -"olW" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/s_bow) -"omb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"ome" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"omo" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/medical/lockerroom) -"omt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"omx" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"omy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"omP" = ( -/obj/item/tool/mop, -/obj/structure/surface/rack, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"onn" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"onv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"onN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"onQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"onY" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"oog" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"ooh" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"oos" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"oou" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"ooA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"opd" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"opu" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) -"opC" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"opD" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/gym) -"opF" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/chief_mp_office) -"opH" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"opJ" = ( -/obj/docking_port/stationary/emergency_response/external/port4, -/turf/open/space/basic, -/area/space) -"opV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"oqc" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"oqt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"oqu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"oqv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"oqw" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"oqI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"oqS" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"oqY" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" - }, -/obj/structure/plasticflaps, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"oqZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 5 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -4; - pixel_y = 19 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = 4; - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"ora" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 9; - pixel_y = 15 - }, -/obj/item/trash/cigbutt{ - pixel_x = -7; - pixel_y = 13 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"orx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"orH" = ( -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/command/lifeboat) -"orN" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"osc" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"osf" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"osr" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"osx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"osz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"osA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"osI" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop) -"osQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"osT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/ice_colony/hula_girl{ - pixel_x = 10; - pixel_y = -4 - }, -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"osU" = ( -/obj/structure/sign/poster{ - icon_state = "poster14"; - pixel_x = -27 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"osX" = ( -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"otp" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"otq" = ( -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"otu" = ( -/turf/closed/wall/almayer/research/containment/wall/connect_w, -/area/almayer/medical/containment/cell) -"otC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"otW" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"ouf" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/starboard) -"oug" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/computer/squad_changer{ - dir = 8; - layer = 2.99; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"our" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm{ - pixel_y = 6 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ouw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/bombcloset, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"ouB" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"ouU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"ouW" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/command/cichallway) -"ove" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ovi" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/upper_engineering/port) -"ovp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"ovG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"ovQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"owg" = ( -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"owU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"owW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "19;29" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/sea_office) -"oxc" = ( -/obj/structure/bed, -/obj/item/toy/plush/farwa{ - pixel_x = 5 - }, -/obj/item/clothing/under/redpyjamas, -/obj/item/bedsheet/orange, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"oxe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"oxl" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"oxn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"oxu" = ( -/obj/structure/sign/safety/galley{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"oxy" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"oxU" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"oym" = ( -/obj/structure/platform/metal/almayer/north, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"oyB" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"oyC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/starboard_hallway) -"oyE" = ( -/obj/effect/landmark/start/intel, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 29; - serial_number = 12 - }, -/obj/effect/landmark/late_join/intel, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/port_atmos) -"oyG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"oyO" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"oyR" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"oyX" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"ozq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"ozz" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"ozH" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"ozN" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat2-D2"; - linked_dock = "almayer-lifeboat2"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"ozT" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"oAa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"oAK" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"oAO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"oAT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"oBq" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 1"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/cells) -"oBr" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_s) -"oBw" = ( -/obj/structure/platform/metal/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"oBA" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"oCa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"oCb" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"oCf" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"oCi" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/navigation) -"oCl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"oCK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"oDa" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"oDh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"oDi" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"oDm" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"oDv" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/living/gym) -"oDx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "30;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"oDy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"oDE" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6 - }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"oDJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains{ - pixel_x = 18; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/ash{ - pixel_x = 11; - pixel_y = 25 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_medbay) -"oDL" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"oDR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/medical_science) -"oDU" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/port_midship_hallway) -"oDY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"oEf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"oEn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/hallways/upper/midship_hallway) -"oEo" = ( -/obj/effect/landmark/start/marine/medic/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"oEw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = 7; - pixel_y = 14 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_17"; - pixel_x = -5; - pixel_y = 10 - }, -/obj/structure/sign/safety/medical{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"oEy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"oEA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/weapon/gun/shotgun/pump{ - pixel_y = 9; - starting_attachment_types = list(/obj/item/attachable/stock/shotgun) - }, -/obj/item/stack/sheet/cardboard/small_stack{ - layer = 3.01 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"oEE" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"oER" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"oEX" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/living/port_emb) -"oFm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop) -"oFn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters/clippers, -/obj/item/restraint/handcuffs/zip, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"oFr" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"oFz" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"oFV" = ( -/obj/structure/sign/poster{ - pixel_x = -32; - serial_number = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"oFY" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/lobby) -"oGf" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"oGh" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"oGi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"oGj" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"oGm" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_umbilical) -"oGx" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = 30 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"oGy" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"oGC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"oGI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"oGJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"oGL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"oGP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/living/port_emb) -"oGW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"oHc" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"oHf" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"oHg" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"oHl" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"oHs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oHt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"oHx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"oIa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"oIh" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"oIn" = ( -/obj/effect/landmark/start/liaison, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"oIp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"oIr" = ( -/obj/item/stack/catwalk, -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_p) -"oIt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"oIB" = ( -/turf/closed/wall/almayer, -/area/almayer/command/combat_correspondent) -"oIY" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"oJj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"oJk" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop) -"oJm" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"oJp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/bed/chair/office/dark, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"oJK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/south2) -"oJL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"oKb" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"oKv" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"oKx" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"oLf" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"oLj" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"oLF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - dir = 2; - name = "\improper Brig Lobby"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/lobby) -"oLN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"oLU" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/hydroponics) -"oMe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"oMi" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"oMr" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"oMs" = ( -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"oMH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha_bravo_shared) -"oMQ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"oNb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"oNj" = ( -/obj/structure/sign/prop1{ - pixel_x = -32; - pixel_y = 2 - }, -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"oNp" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"oNJ" = ( -/obj/structure/transmitter{ - name = "CMO Office Telephone"; - phone_category = "Offices"; - phone_id = "CMO Office"; - dir = 4; - pixel_x = -20 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"oNK" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"oNM" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"oNP" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"oNW" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17; - pixel_y = -7 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"oNY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18"; - pixel_y = 7 - }, -/obj/structure/machinery/door_control/cl/quarter/officedoor{ - pixel_x = -25 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"oOp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"oOw" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"oON" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/starboard) -"oOO" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"oOW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"oOZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/aft_hallway) -"oPf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"oPi" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"oPy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/command/cichallway) -"oPz" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -9; - pixel_y = 3 - }, -/obj/item/tool/pen{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"oPE" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/command/cic) -"oPF" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"oPH" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" - }, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"oQn" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/port_midship_hallway) -"oQs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/book/manual/surgery{ - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"oQw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/hallways/lower/port_umbilical) -"oQB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"oQH" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/briefing) -"oQI" = ( -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/port) -"oQJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"oQL" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"oQM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/tool/pen, -/obj/item/book/manual/marine_law{ - pixel_x = 15; - pixel_y = 5 - }, -/obj/item/book/manual/security_space_law{ - pixel_x = 16; - pixel_y = 9 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/living/auxiliary_officer_office) -"oRk" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"oRm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"oRy" = ( -/obj/structure/sign/safety/med_cryo{ - pixel_x = -6; - pixel_y = 32 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"oRJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer{ - layer = 3 - }, -/obj/effect/landmark/map_item, -/obj/item/device/megaphone, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"oRO" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"oRV" = ( -/obj/structure/blocker/invisible_wall, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"oRW" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/clipboard, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"oSq" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel" - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"oSw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cichallway) -"oSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"oSy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"oSC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"oSG" = ( -/obj/structure/surface/table/almayer, -/obj/item/card/id/visa, -/obj/item/tool/crew_monitor, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"oSL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"oSM" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"oTe" = ( -/obj/item/prop/almayer/box, -/obj/item/prop{ - desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; - icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; - icon_state = "m56c"; - item_state = "m56c"; - name = "broken M57 'Larry's Will' smartgun"; - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/frame/light_fixture/small{ - pixel_y = 17 - }, -/obj/structure/machinery/door_control{ - id = "crate_room4"; - name = "storage shutters"; - pixel_y = 26 - }, -/obj/effect/decal/cleanable/cobweb2/dynamic, -/obj/item/packageWrap, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"oTA" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"oTH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"oUi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oUt" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"oUx" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"oUG" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"oUZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"oVf" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/evidence{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/storage/box/evidence{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"oVh" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform_decoration/metal/almayer/southeast, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) -"oVk" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"oVo" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"oVY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"oWf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/obj/item/device/defibrillator, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"oWg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"oWq" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"oWx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"oWz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/starboard_garden) -"oWE" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oWF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"oWK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"oWN" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"oXb" = ( -/obj/effect/landmark/start/marine/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"oXp" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"oXJ" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"oXM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"oXY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"oYi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"oYl" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south2) -"oYp" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/offices/flight) -"oYr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"oYs" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"oYA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/lower/repair_bay) -"oYZ" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"oZp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/item/reagent_container/food/snacks/grilledcheese{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/prop/magazine/boots/n055{ - pixel_x = -9; - pixel_y = 5 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/living/offices/flight) -"oZx" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs2"; - name = "\improper ARES Reception Shutters"; - plane = -7 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"oZy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"oZD" = ( -/obj/structure/sign/poster/music{ - pixel_x = -27 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -10; - pixel_y = -1 - }, -/obj/item/tool/pen{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/tool/pen{ - pixel_x = -11; - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"oZI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"oZV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"paa" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/containment) -"pas" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/sign/safety/cryo{ - pixel_x = 3; - pixel_y = 25 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 15; - pixel_y = 25 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"paI" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"paJ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"paL" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/command/cic) -"pbg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"pbm" = ( -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/mp_bunks) -"pbo" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"pbp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"pbs" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"pbV" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/command/cic) -"pbW" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"pcc" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"pcf" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"pcj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/shipboard/brig/cic_hallway) -"pcl" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"pcs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"pcv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"pcE" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"pcG" = ( -/obj/structure/machinery/door_control{ - id = "dccbunk"; - name = "DCC Privacy Shutters"; - pixel_x = 24 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"pcO" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/grunt_rnr) -"pcY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"pdo" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north2) -"pdp" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"pdD" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"pdT" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"peg" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north1) -"pek" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_bow) -"pep" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_p) -"peH" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"peM" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_s) -"peO" = ( -/obj/structure/sign/safety/medical{ - pixel_x = -17; - pixel_y = 6 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17; - pixel_y = -9 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/lobby) -"pfa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"pfc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/starboard) -"pfd" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/starboard_hallway) -"pfp" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone) -"pfD" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"pfL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"pfM" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"pfT" = ( -/obj/structure/machinery/ares/processor/interface, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"pga" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"pgw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"pgD" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/south1) -"pgJ" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"pgM" = ( -/obj/structure/reagent_dispensers/water_cooler/walk_past{ - pixel_x = 10; - pixel_y = 3 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"pgN" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"pgP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"pha" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"phd" = ( -/obj/structure/sign/poster/safety{ - pixel_x = 27 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"phj" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/machinery/photocopier/wyphotocopier, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"phw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"phN" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"phW" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = -32 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"pij" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"piJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"piK" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 1"; - name = "\improper cell shutter" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"piQ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"pje" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"pjh" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"pjj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/starboard) -"pjw" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_lobby) -"pjz" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_bow) -"pjF" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - pixel_y = 20; - density = 0 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"pjG" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/squads/req) -"pjO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"pjP" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"pjR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"pkz" = ( -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha_bravo_shared) -"pkA" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"pkS" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"pld" = ( -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red/northeast, -/area/almayer/maint/upper/u_a_p) -"plq" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform_decoration/metal/almayer/northeast, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north2) -"plv" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"plH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/obj/structure/platform/metal/almayer/east, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/lower/repair_bay) -"plK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"plO" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform/metal/almayer/west, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"pmd" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"pmq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"pmv" = ( -/obj/structure/machinery/door/airlock/almayer/marine/alpha{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"pmH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"pmV" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/obj/structure/machinery/computer/tech_control{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/no_build/ai_floors, -/area/almayer/command/airoom) -"pnh" = ( -/obj/structure/ladder{ - height = 2; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/p_bow) -"pns" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"pnC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"pnL" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/starboard) -"pok" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"poA" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 10 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"poD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"ppe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"ppn" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"ppF" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/surface/table/almayer, -/obj/item/clipboard{ - pixel_x = -4 - }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/camera, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"ppG" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"ppM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"ppV" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pqc" = ( -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"pqi" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/tool/weldingtool, -/obj/item/tool/weldingtool, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/item/device/reagent_scanner, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"pql" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"pqw" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"pqD" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"pqF" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/cigarbutt, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/obj/item/trash/cigbutt, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"pqK" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"pqM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Workshop Vendors" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"pqP" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"pqX" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"pqY" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"prf" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"pri" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"prl" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"prx" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"prE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/tray, -/obj/item/clothing/suit/chef/classic, -/obj/item/clothing/head/chefhat, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"prP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"prX" = ( -/obj/structure/ladder{ - height = 2; - id = "AftStarboardMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_s) -"prY" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray, -/obj/item/tool/kitchen/utensil/pknife, -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"psa" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"psk" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"psK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "tc02"; - name = "Door Release"; - normaldoorcontrol = 1; - pixel_x = -28; - pixel_y = 23 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"psO" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/lower_medical_medbay) -"ptf" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering) -"pth" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/gm/grass/grass1, -/area/almayer/medical/upper_medical) -"ptj" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"ptq" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/processing) -"ptA" = ( -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/starboard) -"ptK" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"ptQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_stern) -"pub" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/upper/fore_hallway) -"pum" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"pun" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/shipboard/port_missiles) -"pur" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/cryo_cells) -"puI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"puO" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"puP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/upper/midship_hallway) -"puT" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"pvh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/item/tool/warning_cone{ - pixel_x = -21; - pixel_y = -9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"pvi" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/aft_hallway) -"pvI" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"pvJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"pvK" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/structure/machinery/firealarm{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/transmitter/rotary{ - name = "Intelligence Center Telephone"; - phone_category = "Almayer"; - phone_id = "Intelligence Center Telephone" - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"pvP" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/starboard_missiles) -"pwl" = ( -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/hallways/upper/fore_hallway) -"pwx" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pwG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"pxj" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"pxo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"pxD" = ( -/obj/structure/machinery/vending/coffee{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/machinery/vending/snack{ - pixel_x = -18; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"pxG" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"pxJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"pyc" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/emerald/north, -/area/almayer/living/port_emb) -"pyi" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"pyj" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"pyl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"pyx" = ( -/obj/item/storage/fancy/cigarettes/blackpack{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = 2 - }, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - dir = 4; - layer = 3.2; - pixel_x = -15; - pixel_y = 1 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"pyy" = ( -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"pyC" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"pyL" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"pzc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"pzd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"pzj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pzw" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"pzG" = ( -/obj/docking_port/stationary/emergency_response/port1, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"pzJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"pzM" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"pzV" = ( -/turf/open/floor/almayer/bluecorner/north, -/area/almayer/living/briefing) -"pzW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hallways/lower/vehiclehangar) -"pzX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"pAm" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"pBG" = ( -/turf/closed/wall/almayer, -/area/almayer/command/corporateliaison) -"pCq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"pCr" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/blend, -/turf/closed/wall/almayer{ - opacity = 0 - }, -/area/almayer/squads/req) -"pDh" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"pDo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/starboard_point_defense) -"pDr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"pDt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/bravo) -"pDB" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"pDW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/chief_mp_office) -"pEl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/ladder/fragile_almayer{ - height = 1; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"pEB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"pEJ" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 2"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/structure/machinery/light/containment{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"pEY" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"pFq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/obj/item/device/whistle{ - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"pFr" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"pGh" = ( -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -9; - pixel_y = 19 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"pGj" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"pGE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/hand_labeler{ - pixel_x = 7 - }, -/obj/item/paper_bin/uscm{ - pixel_y = 5 - }, -/obj/item/tool/pen, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - pixel_x = 17 - }, -/obj/item/device/megaphone, -/obj/item/book/manual/medical_diagnostics_manual, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"pGG" = ( -/obj/effect/landmark/start/doctor, -/obj/structure/sign/safety/maint{ - pixel_y = 26 - }, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"pGK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"pGT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"pHc" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"pHh" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"pHp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/perma) -"pHA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"pHF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"pHG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/basketball) -"pId" = ( -/obj/item/storage/box/nade_box/tear_gas, -/obj/item/storage/box/nade_box/tear_gas{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"pIo" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"pIC" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"pIU" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"pIV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"pIZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/north1) -"pJl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 2 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/upper_medical) -"pJm" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"pJq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"pJr" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"pJD" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/item/tool/soap, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"pJS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"pJX" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 8; - vent_tag = "Reception" - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"pKh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"pKB" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/firealarm, -/obj/item/circuitboard, -/obj/item/clipboard, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"pKH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"pKL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/secure{ - pixel_x = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"pKU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"pKW" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/repair_bay) -"pKZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"pLa" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"pLt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"pLE" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"pLO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"pLW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"pMe" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south1) -"pMj" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"pMk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"pMp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"pMx" = ( -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north1) -"pMA" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"pMH" = ( -/obj/item/tool/wet_sign, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"pMJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"pML" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/blue, -/area/almayer/living/port_emb) -"pNa" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"pNP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/item/reagent_container/food/snacks/cheesewedge{ - pixel_x = -10; - pixel_y = 7 - }, -/mob/living/simple_animal/mouse/white/Doc, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"pOi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"pOp" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"pOD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"pOH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"pON" = ( -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/command/cic) -"pOW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"pOY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"pPd" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"pPt" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"pPv" = ( -/obj/structure/closet/cabinet, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/wine, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"pPy" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"pPA" = ( -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 27; - serial_number = 12 - }, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"pPG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"pPM" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/securestorage) -"pPN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/port_missiles) -"pPQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"pQc" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/offices) -"pQr" = ( -/obj/structure/bed, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"pQy" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/bridgebunks) -"pQz" = ( -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_s"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"pQF" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_x_offset = 0; - vend_y_offset = 0 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"pQI" = ( -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/mp_bunks) -"pQN" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"pQP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"pQV" = ( -/turf/open/floor/almayer/blue, -/area/almayer/living/pilotbunks) -"pQY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"pRn" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"pRs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"pRy" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell/cl) -"pRO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/shipboard/brig/cic_hallway) -"pRT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 8; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"pRX" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"pRZ" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/engineering/lower/workshop) -"pSF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"pSQ" = ( -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"pSU" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"pTj" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/computerlab) -"pTI" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"pTS" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/fore_hallway) -"pTX" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"pTY" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/maint/upper/u_a_s) -"pUd" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/mono, -/area/almayer/command/computerlab) -"pUf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"pUg" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs2"; - name = "ARES Reception Stairway Shutters"; - pixel_x = 24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"pUj" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"pUp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 27 - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"pUv" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/lower/engine_core) -"pUA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/on, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/living/briefing) -"pUD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/brig/processing) -"pVh" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"pVr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pVx" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/req) -"pVA" = ( -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 2; - pixel_y = 18 - }, -/obj/item/tool/warning_cone{ - pixel_x = -12 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"pVB" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 8 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/living/briefing) -"pVF" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"pWb" = ( -/obj/effect/landmark/start/marine/tl/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"pWd" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"pWr" = ( -/obj/structure/surface/rack, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/structure/sign/safety/hvac_old{ - pixel_y = -26 - }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"pWw" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"pWN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/blue, -/area/almayer/living/pilotbunks) -"pXl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"pXx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"pXV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"pXZ" = ( -/obj/effect/landmark/start/marine/spec/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"pYh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/one{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"pYo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/containment) -"pYu" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/obj/structure/sign/safety/security{ - pixel_x = -16 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"pYN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"pYQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"pYS" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"pYX" = ( -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) -"pZH" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/window/reinforced/tinted/frosted, -/obj/item/tool/soap/deluxe, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/corporateliaison) -"pZK" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering/port) -"pZR" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"pZS" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"qam" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"qan" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"qas" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qax" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"qaV" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering) -"qaW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/living/briefing) -"qbw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"qbx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"qby" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/living/briefing) -"qbD" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"qbO" = ( -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/pilotbunks) -"qbP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"qbU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"qbZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ - dir = 1; - name = "\improper Engineering Bunks" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"qck" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/cameras/wooden_tv/almayer{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"qcr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) -"qcy" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"qdk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"qdv" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/clothing/head/beret/royal_marine, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/living/port_emb) -"qdz" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"qdA" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"qdJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"qdQ" = ( -/obj/structure/bed/sofa/vert/grey/top{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"qdV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"qec" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"qej" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"qep" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - access_modified = 1; - dir = 2; - name = "\improper Field Surgery Equipment"; - req_access_txt = "20"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"qer" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"qeF" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"qeK" = ( -/obj/structure/pipes/vents/scrubber, -/obj/structure/surface/table/reinforced/black, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/device/helmet_visor{ - pixel_x = 8; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"qeY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"qfa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"qfh" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"qfq" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_umbilical) -"qfy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = -11; - pixel_y = 16 - }, -/obj/structure/filingcabinet/filingcabinet{ - density = 0; - pixel_x = 4; - pixel_y = 16 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/medical_science) -"qfA" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/cichallway) -"qfD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"qfI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qfP" = ( -/obj/structure/bed/chair/comfy/orange, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"qfQ" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade/three, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"qga" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/starboard_garden) -"qgn" = ( -/obj/item/stool, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"qgr" = ( -/obj/item/trash/plate{ - pixel_x = 9; - pixel_y = 11 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - layer = 3.3; - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/reagent_container/food/snacks/carpmeat{ - layer = 3.3; - pixel_x = 8; - pixel_y = 11 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"qgK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic/press{ - dir = 1; - name = "\improper Combat Correspondent Room" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/combat_correspondent) -"qgN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"qgU" = ( -/obj/structure/machinery/power/apc/almayer/hardened/south, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"qhb" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/south1) -"qhg" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"qhx" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access_txt = "5" - }, -/obj/item/clothing/accessory/stethoscope, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"qhD" = ( -/obj/structure/closet{ - name = "backpack storage" - }, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/grenadepack, -/obj/item/storage/backpack/marine/mortarpack, -/obj/item/storage/backpack/marine/mortarpack, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop/hangar) -"qhG" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -7; - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"qhT" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"qhU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"qid" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"qig" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"qih" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Tanker Quarters"; - req_one_access_txt = "19;27" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/tankerbunks) -"qim" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"qit" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"qiw" = ( -/obj/effect/projector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform/metal/almayer/east, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"qiy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"qjz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/lighter, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"qjF" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/computerlab) -"qjK" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/mp_bunks) -"qjL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"qjN" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"qjV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"qjY" = ( -/obj/structure/machinery/door/window/eastleft{ - req_one_access_txt = "2;21" - }, -/obj/structure/machinery/door/window/westright, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ROlobby1"; - name = "\improper RO Line 1" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/surface/table/reinforced/almayer_blend/north, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -6; - pixel_y = -8 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"qjZ" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/stern_point_defense) -"qki" = ( -/obj/effect/landmark/start/marine/smartgunner/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"qkP" = ( -/obj/item/frame/light_fixture{ - anchored = 1; - desc = "A broken fluorescent tube light."; - dir = 8; - icon_state = "tube-broken"; - name = "broken light fixture" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"qkY" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/coffeecup{ - pixel_x = -8; - pixel_y = -1 - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_y = 9 - }, -/obj/item/tool/pen{ - pixel_x = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qlm" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"qlp" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/prop/tableflag/uscm{ - pixel_x = -5 - }, -/obj/item/prop/tableflag/uscm2{ - pixel_x = 5 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"qlu" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"qlz" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "SEA Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/sea_office) -"qlI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"qlL" = ( -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"qma" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qmh" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/lower/repair_bay) -"qmk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/bluecorner/east, -/area/almayer/squads/delta) -"qmq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"qmy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_windoor"; - name = "Windoor Shutters"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "28" - }, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 1; - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/sign/safety/biohazard{ - pixel_y = -32 - }, -/obj/structure/sign/safety/ref_bio_storage{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/door_control{ - dir = 1; - id = "researchlockdownext_se_2"; - name = "Window Shutters"; - pixel_x = -7; - pixel_y = 4; - req_access_txt = "28" - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/medical_science) -"qmC" = ( -/obj/structure/platform/metal/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south1) -"qmD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair/comfy, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"qmK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/fore_hallway) -"qmM" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"qmP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"qmR" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) -"qmU" = ( -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/item/vehicle_clamp, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"qmW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"qmY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"qnd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"qnh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"qni" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"qnl" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"qnA" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"qnC" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"qnD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Crew Chief's Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"qnH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange, -/area/almayer/hallways/upper/midship_hallway) -"qnX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"qom" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/chem_dispenser/soda{ - density = 0; - pixel_x = 1; - pixel_y = 14; - wrenchable = 0 - }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"qon" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"qoJ" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/squads/bravo) -"qoL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder/industrial{ - pixel_y = 8 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"qoM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"qoN" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"qoR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qoY" = ( -/obj/structure/machinery/vending/hydroseeds, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"qpx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/pipes/vents/scrubber, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"qpD" = ( -/obj/structure/platform/metal/almayer/east, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"qpQ" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/medbay, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/chemistry) -"qpV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"qpY" = ( -/obj/structure/machinery/cryopod/right{ - dir = 4; - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) -"qqa" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"qqf" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qqn" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"qqr" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"qqu" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/command/lifeboat) -"qqK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"qqQ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/medical_science) -"qqS" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"qra" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"qrc" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"qrv" = ( -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"qsp" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"qsC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"qsG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"qsL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/ce_room) -"qtv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"qtE" = ( -/obj/structure/platform/metal/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"quj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"quq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"quv" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/cryo_tubes) -"quJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"quS" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"quT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc02"; - name = "\improper Treatment Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"quV" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/bed/stool, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"qvh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/upper/midship_hallway) -"qvC" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"qvE" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"qvF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/maint/upper/u_a_s) -"qvI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"qvL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Weyland-Yutani Office" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/door, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"qwo" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"qwp" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/turf/open/floor/plating, -/area/almayer/command/cichallway) -"qwt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"qwL" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"qwU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"qwY" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_s) -"qxe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 3"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"qxj" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"qxm" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "W_Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/closed/wall/almayer/research/containment/wall/purple, -/area/almayer/medical/containment/cell) -"qxr" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"qxz" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PU-5"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"qxC" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Alpha_1"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"qxE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/biolab{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/water{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"qxI" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"qxJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"qxL" = ( -/obj/structure/machinery/medical_pod/autodoc, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_medbay) -"qxP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"qxS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"qyi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"qyo" = ( -/turf/open/floor/almayer/blue/north, -/area/almayer/command/cichallway) -"qyA" = ( -/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ - density = 0; - pixel_x = -32 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"qyD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"qyG" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) -"qyK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"qyP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"qyW" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/squads/charlie_delta_shared) -"qyX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qyZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/view_objectives, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"qzc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_point_defense) -"qzA" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"qAs" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"qAy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"qAA" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/ce_room) -"qAB" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"qAE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/medical_science) -"qAK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qAT" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/device/reagent_scanner{ - pixel_x = -16; - pixel_y = 5 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"qBl" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"qBq" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/commandbunks) -"qBM" = ( -/obj/item/storage/fancy/crayons{ - layer = 3.1; - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/living/grunt_rnr) -"qBS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"qCc" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qCo" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"qCy" = ( -/obj/effect/landmark/start/captain, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/bridgebunks) -"qCA" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/execution) -"qCG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"qCH" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Secretroom"; - explo_proof = 1; - unacidable = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"qCU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 32; - pixel_y = -22 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"qDq" = ( -/obj/effect/landmark/start/marine/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"qDt" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Lifeboat Control Bubble"; - req_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"qDB" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_a_p) -"qDM" = ( -/obj/structure/platform/metal/almayer, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"qDP" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/operating_room_four) -"qDS" = ( -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"qEk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/command/cic) -"qEl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"qEn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ - name = "\improper Research Hydroponics Workshop" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"qEy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/processing) -"qEz" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_y = -21; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"qEA" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 4"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"qEL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case/small{ - pixel_y = 5 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"qEM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"qFi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"qFu" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Cell Privacy Shutters"; - name = "\improper Cell Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cells) -"qFE" = ( -/obj/structure/machinery/brig_cell/cell_5{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"qFG" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"qFK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/delta) -"qFS" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"qFX" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/mp_bunks) -"qGc" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha_bravo_shared) -"qGf" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/sign/safety/rewire{ - pixel_y = -38 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/lobby) -"qGw" = ( -/obj/structure/reagent_dispensers/ammoniatank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"qGC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"qGF" = ( -/obj/structure/machinery/optable, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_two) -"qGU" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/lifeboat_pumps/south2) -"qHe" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"qHg" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"qHq" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock SU-6"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"qHD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"qHG" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"qHM" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"qHT" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"qIf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qIx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access_txt = "200"; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/backdoor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"qIF" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/fore_hallway) -"qIL" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/item/folder/white{ - pixel_x = 6 - }, -/obj/item/storage/fancy/vials/empty{ - pixel_y = 10; - start_vials = 2 - }, -/obj/item/tool/pen{ - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"qJf" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/upper_engineering) -"qJj" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - pixel_x = 2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"qJo" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/perma) -"qJx" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"qJy" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/sign/safety/storage{ - pixel_x = 33; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/hydroponics) -"qJS" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -11; - pixel_y = -1 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"qJY" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - layer = 3.1; - pixel_x = -12; - pixel_y = 14 - }, -/obj/item/toy/deck/uno{ - layer = 3.1; - pixel_x = -3; - pixel_y = -1 - }, -/obj/item/toy/handcard/uno_reverse_yellow{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/open/floor/almayer/orange, -/area/almayer/living/port_emb) -"qJZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"qKb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/tubes{ - pixel_x = -8 - }, -/obj/item/storage/box/lights/tubes{ - pixel_x = 5 - }, -/obj/item/storage/box/lights/tubes{ - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"qKi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/upper_engineering) -"qKl" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"qKz" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/securestorage) -"qKK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"qKY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"qKZ" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"qLg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/port) -"qLi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"qLk" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"qLs" = ( -/obj/effect/landmark/start/maint, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"qLt" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters/clippers, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/plantspray/weeds, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/open/floor/almayer/green/southwest, -/area/almayer/shipboard/brig/cells) -"qLH" = ( -/obj/structure/bed/chair{ - buckling_y = 6; - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"qLS" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"qLV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/disk_reader, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"qLY" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"qMD" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/storage/box/flashbangs{ - pixel_x = -8; - pixel_y = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"qMI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-y" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"qMP" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"qMR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qNc" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = 24; - pixel_y = 8; - req_one_access_txt = "90;91;92" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"qNd" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"qNI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"qNK" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"qNR" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"qOf" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"qOk" = ( -/obj/docking_port/stationary/lifeboat_dock/port, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/space/almayer/lifeboat_dock) -"qOp" = ( -/obj/structure/disposalpipe/junction, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/gym) -"qOS" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qOY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_p) -"qOZ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"qPk" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qPn" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_s) -"qPr" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"qPD" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"qPE" = ( -/obj/structure/machinery/prop/almayer/CICmap, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 16 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/securestorage) -"qPS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"qPU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"qPX" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/red, -/area/almayer/command/lifeboat) -"qQc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"qQp" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"qQu" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"qQy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"qQD" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/intercom{ - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"qQS" = ( -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"qRb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qRd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qRj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/shipboard/brig/cic_hallway) -"qRr" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/door, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"qRX" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"qSk" = ( -/obj/vehicle/powerloader, -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) -"qSm" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_point_defense) -"qSn" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"qSE" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/cholula, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"qSI" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"qSK" = ( -/obj/item/stack/sheet/metal{ - layer = 2.9; - pixel_x = 4; - pixel_y = 21 - }, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"qSX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"qTi" = ( -/obj/structure/closet/crate, -/obj/item/ammo_box/magazine/l42a, -/obj/item/ammo_box/magazine/l42a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"qTu" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"qTw" = ( -/obj/structure/platform/metal/almayer/north, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qTA" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"qTQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"qTS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"qTY" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"qUh" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qUp" = ( -/obj/structure/surface/table/almayer, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"qUq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/charlie_delta_shared) -"qUu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/fore_hallway) -"qUx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"qUz" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"qUK" = ( -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"qUL" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"qUO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qUZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "MTline"; - name = "Next button"; - pixel_x = 5; - pixel_y = 10; - req_one_access_txt = "2;7" - }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"qVC" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"qVE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"qVF" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"qVS" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/sign/safety/conference_room{ - pixel_x = -17 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"qWt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"qWx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"qWI" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"qWK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/hallways/lower/port_midship_hallway) -"qWL" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/item/frame/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"qWQ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"qWR" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell/cl) -"qXk" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"qXo" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/grunt_rnr) -"qXp" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - pixel_x = 15 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"qXE" = ( -/obj/structure/machinery/brig_cell/perma_1{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"qXO" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ - pixel_x = 5 - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/effect/landmark/map_item{ - layer = 3.03; - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"qXS" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/upper/port) -"qYd" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south2) -"qYq" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/engine_core) -"qYr" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/catwalk{ - health = null - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"qYu" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"qYz" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"qYC" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 4; - id = "almayerlink_OT_req" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"qYG" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/lifeboat) -"qYN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/deck, -/turf/open/floor/almayer/red/northeast, -/area/almayer/living/offices/flight) -"qYQ" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"qYZ" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"qZy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"qZA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/chief_mp_office) -"qZF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/machinery/door_control{ - id = "perma_lockdown_1"; - name = "\improper Perma Cells Lockdown"; - pixel_x = -8; - pixel_y = -4; - req_access_txt = "3" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/perma) -"qZH" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/almayer/greenfull, -/area/almayer/living/offices) -"qZK" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"qZT" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qZX" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"rae" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"raE" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"raK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"raO" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"rbd" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rbp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"rby" = ( -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Left"; - name = "ARES Mainframe Lockdown"; - pixel_x = 24; - pixel_y = -24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"rbB" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/command/computerlab) -"rbF" = ( -/obj/effect/landmark/late_join, -/obj/effect/landmark/ert_spawns/distress_cryo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"rbH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"rbK" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"rbY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "crate_room"; - name = "\improper Storage Shutters" - }, -/turf/open/floor/plating, -/area/almayer/squads/req) -"rct" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform_decoration/metal/almayer/southeast, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"rcx" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"rcG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"rcS" = ( -/obj/structure/machinery/computer/cryopod/eng{ - dir = 8 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering) -"rde" = ( -/obj/structure/sign/prop1, -/turf/closed/wall/almayer, -/area/almayer/living/grunt_rnr) -"rdh" = ( -/obj/structure/machinery/light{ - dir = 1; - pixel_x = 16 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"rdt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner4, -/area/almayer/medical/containment/cell) -"rdz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_s"; - id_tag = "cic_exterior"; - name = "\improper Combat Information Center" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"rdA" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -34 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"rdI" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering) -"rdM" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"rdN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"rdS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"rdT" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"rdZ" = ( -/turf/open/floor/plating, -/area/almayer/command/corporateliaison) -"rec" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ren" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/target{ - name = "punching bag" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"reu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"reH" = ( -/obj/structure/noticeboard{ - pixel_x = -10; - pixel_y = 31 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/squads/req) -"reL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"reM" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/maint/upper/mess) -"reN" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"rfa" = ( -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"rfb" = ( -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 8; - icon_state = "containment_window_h" - }, -/area/almayer/medical/containment/cell/cl) -"rfe" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"rfB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"rfI" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"rfT" = ( -/obj/item/frame/camera{ - desc = "The Staff Officer insisted he needed to monitor everyone at all times."; - layer = 2.9; - name = "broken camera"; - pixel_x = -7; - pixel_y = -6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"rfY" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/cryo) -"rgt" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/port_umbilical) -"rgy" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"rgK" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.5; - pixel_x = 5; - pixel_y = 14 - }, -/obj/item/attachable/bayonet{ - pixel_x = -14; - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/auxiliary_officer_office) -"rgL" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) -"rgO" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"rgW" = ( -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/living/briefing) -"rhm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"rho" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/upper/midship_hallway) -"rht" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"rhy" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/structure/prop/server_equipment/laptop{ - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"rhD" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"rhO" = ( -/obj/structure/machinery/vending/cola/research{ - pixel_x = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"rhQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"rib" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"rir" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/s_bow) -"riB" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"riC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"riE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) -"riJ" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"riP" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/rewire{ - pixel_y = -32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"riT" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"rjn" = ( -/obj/structure/machinery/light, -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"rjr" = ( -/turf/open/floor/almayer/silvercorner, -/area/almayer/hallways/upper/midship_hallway) -"rjF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"rjG" = ( -/obj/structure/pipes/standard/tank/oxygen, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"rjO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"rjV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 27; - serial_number = 11 - }, -/obj/item/trash/pistachios{ - layer = 2; - pixel_x = 6; - pixel_y = -6 - }, -/obj/structure/machinery/recharger{ - layer = 3.1; - pixel_y = 22 - }, -/obj/item/ammo_magazine/rifle/incendiary{ - current_rounds = 0; - desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; - pixel_x = 10; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - dir = 8; - layer = 3.2; - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/port_emb) -"rjX" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"rka" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"rkz" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"rkV" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/warden_office) -"rlc" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"rlf" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"rlh" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"rll" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rlA" = ( -/obj/structure/platform_decoration/metal/almayer, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rlD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/lower/repair_bay) -"rlQ" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"rlZ" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"rmc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/medical_science) -"rmf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/upper_engineering/starboard) -"rmk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 26 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"rmo" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"rmx" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/item/device/flash, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"rmz" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rmD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"rmE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"rmG" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"rna" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"rnr" = ( -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"rnF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Engineering Workshop" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop) -"rnH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/computer/crew/alt{ - dir = 8; - pixel_x = 17 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"rnM" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"rnN" = ( -/turf/open/floor/almayer/greenfull, -/area/almayer/hallways/upper/fore_hallway) -"rob" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"roj" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"rou" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"roG" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"roH" = ( -/obj/effect/step_trigger/ares_alert/terminals, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "ARES Operations Left"; - name = "\improper ARES Operations Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"roU" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"rpk" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/north2) -"rpp" = ( -/obj/effect/landmark/start/executive, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/bridgebunks) -"rpG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"rpK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"rpV" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"rqb" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"rqj" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"rqv" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) -"rqz" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"rqD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"rqE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rqQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"rqS" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/red{ - pixel_x = -4 - }, -/obj/item/folder/blue{ - pixel_x = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"rrh" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Under Construction Shutters"; - name = "\improper Construction Site" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"rrq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"rrz" = ( -/obj/structure/sign/safety/four{ - pixel_x = -17 - }, -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 4"; - name = "Cell 4" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"rrB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - name = "\improper Cryogenics Bay" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"rrD" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/upper_medical) -"rrK" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"rrU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rsK" = ( -/obj/structure/sign/safety/hvac_old, -/turf/closed/wall/almayer, -/area/almayer/squads/req) -"rsL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_aft_hallway) -"rsM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"rsO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"rsP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"rsS" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = -25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"rsV" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"rtc" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/photo_album{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/folder/black{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/device/camera_film{ - pixel_x = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"rtd" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/starboard) -"rth" = ( -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"rtA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/pen{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -5; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"rtV" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"rtY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/bronze, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = 6; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"rub" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"ruc" = ( -/obj/structure/machinery/camera/autoname/almayer/containment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"rui" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"rur" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"rux" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/hangar) -"ruy" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/metal/stair_cut/platform_right, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"ruz" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"ruL" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/turf/open/floor/plating, -/area/almayer/engineering/lower/workshop/hangar) -"ruR" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rvA" = ( -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"rvI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"rvT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"rwe" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"rwj" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rwq" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = -26 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"rwv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"rwB" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"rwY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "pobunk2"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/living/pilotbunks) -"rwZ" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_p) -"rxc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"rxe" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"rxl" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit."; - icon_state = "delivery_engi"; - name = "Security Vault"; - pixel_x = -24; - pixel_y = 28 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = -32; - pixel_y = 40; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"rxq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"rxK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/navigation) -"rxQ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"ryn" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/command/securestorage) -"ryt" = ( -/obj/structure/pipes/standard/manifold/visible, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"ryG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"ryJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"ryY" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/disposalpipe/down/almayer{ - dir = 1; - id = "almayerlink" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"rzy" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"rzN" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"rAb" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/living/briefing) -"rAo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"rAw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -7 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"rAx" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"rAC" = ( -/obj/docking_port/stationary/emergency_response/external/port5, -/turf/open/space/basic, -/area/space) -"rAD" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/weapon_room) -"rAN" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"rAP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"rAS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"rBa" = ( -/obj/structure/machinery/cm_vending/clothing/synth, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"rBb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/nosmoking_2{ - pixel_x = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"rBj" = ( -/obj/structure/machinery/processor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"rBv" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"rBx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/stamp/ro{ - name = "spare requisitions officer's rubber stamp"; - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"rBD" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_m_p) -"rBY" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/item/tool/soap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"rCh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"rCl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"rCD" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"rCK" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"rCO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"rCZ" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) -"rDb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"rDe" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = 33 - }, -/obj/item/toy/deck{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 9; - pixel_y = 12 - }, -/obj/item/ashtray/plastic{ - pixel_y = -4 - }, -/obj/item/trash/cigbutt{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/squads/req) -"rDf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"rDr" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/medical_science) -"rDt" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"rDv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"rDy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"rDH" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"rDO" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"rDQ" = ( -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/cryo) -"rDR" = ( -/obj/structure/machinery/vending/coffee, -/obj/item/toy/bikehorn/rubberducky{ - desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; - name = "Quackers"; - pixel_x = 5; - pixel_y = 17 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"rDV" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"rEd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"rEf" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"rEm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"rEr" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer3" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"rEt" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"rEv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rEK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"rEY" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"rFg" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"rFs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/folder/black, -/obj/item/tool/pen, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"rFy" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/engineering/upper_engineering/starboard) -"rFH" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"rGc" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/gm/grass/grass1, -/area/almayer/medical/upper_medical) -"rGj" = ( -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"rGr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"rGz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"rGE" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - name = "\improper Conference Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CIC_Conference"; - name = "\improper CIC Conference Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"rGL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/upper/mess) -"rHc" = ( -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"rHf" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"rHo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc01"; - name = "\improper Treatment Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"rHq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"rHr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/starboard_aft_hallway) -"rHw" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rHB" = ( -/obj/item/ammo_box/magazine/misc/mre/empty{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 11; - pixel_y = -3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) -"rHN" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"rHY" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform_decoration/metal/almayer/southeast, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/north1) -"rIj" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - name = "\improper Medical Bay"; - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "medicalemergency"; - name = "\improper Medical Bay Lockdown" - }, -/obj/structure/machinery/door_control{ - id = "medicalemergency"; - name = "Medbay Lockdown"; - pixel_y = -23; - req_one_access_txt = "2;3;12;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"rIw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"rID" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"rIH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"rIO" = ( -/obj/structure/machinery/vending/snack, -/obj/item/clothing/head/cmcap/boonie/tan{ - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"rIP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rIV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"rIW" = ( -/obj/structure/machinery/cm_vending/gear/synth, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"rJf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"rJh" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 5; - pixel_y = -2 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"rJj" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"rJn" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"rJu" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/living/briefing) -"rJx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie_delta_shared) -"rJD" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/machinery/cm_vending/own_points/experimental_tools, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"rJK" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"rKd" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/command/cic) -"rKn" = ( -/obj/structure/machinery/door_control{ - id = "agentshuttle"; - explo_proof = 1; - name = "Shutters"; - pixel_y = 25; - req_one_access_txt = "201"; - use_power = 0 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"rKt" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/port_aft_hallway) -"rKA" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/item/bedsheet/brown{ - layer = 3.1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"rKO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"rKQ" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"rLk" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"rLp" = ( -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 20 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"rLv" = ( -/turf/closed/wall/almayer/research/containment/wall/purple{ - dir = 4; - icon_state = "containment_window_h" - }, -/area/almayer/medical/containment/cell/cl) -"rLH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/device/binoculars, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"rLK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"rLP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"rLU" = ( -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell/cl) -"rMh" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"rMj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"rMO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/s_bow) -"rMT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/command/corporateliaison) -"rNa" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/uscm{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/item/tool/pen/clicky{ - pixel_x = -13; - pixel_y = -1 - }, -/obj/item/tool/pen/clicky{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/structure/machinery/door_control{ - id = "CO-Office"; - name = "Door Control"; - normaldoorcontrol = 1; - pixel_y = 7; - req_access_txt = "31" - }, -/obj/item/ashtray/bronze{ - pixel_x = 12; - pixel_y = 1 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"rNb" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/machinery/door_control{ - id = "Alpha_2"; - name = "Door Lock"; - normaldoorcontrol = 1; - pixel_x = 23; - specialfunctions = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"rNd" = ( -/obj/effect/landmark/start/marine/engineer/delta, -/obj/effect/landmark/late_join/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"rNK" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"rOc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"rOs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard, -/obj/item/device/binoculars, -/obj/item/storage/bible, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"rOv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"rOz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"rOC" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"rOI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"rOJ" = ( -/obj/structure/barricade/handrail, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"rPq" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"rPt" = ( -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"rPE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rPF" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"rPO" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = -6; - pixel_y = 16 - }, -/obj/item/facepaint/black{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/blue/southwest, -/area/almayer/squads/delta) -"rPQ" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Hallway" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"rQc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"rQs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"rQt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"rQw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"rQy" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/hydroponics) -"rQA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/delta) -"rQV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"rQW" = ( -/obj/item/tool/screwdriver, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"rRq" = ( -/turf/closed/wall/almayer, -/area/almayer/lifeboat_pumps/south2) -"rRz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"rRT" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) -"rRU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/ashtray/glass{ - pixel_x = -6 - }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/weed{ - name = "cigarette"; - pixel_y = 7 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"rSj" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/squads/alpha_bravo_shared) -"rSq" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/medical/upper_medical) -"rSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods/plasteel{ - amount = 36 - }, -/obj/item/stack/catwalk{ - amount = 60; - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"rSA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"rSG" = ( -/obj/structure/toilet{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"rSH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"rSR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"rSW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"rTk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"rTA" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rTB" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"rTJ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"rTZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"rUh" = ( -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"rUi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"rUk" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"rUq" = ( -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"rUy" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"rUN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"rVc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"rVt" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/part_fabricator/dropship, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"rVB" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"rVC" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"rVN" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/port_missiles) -"rWb" = ( -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rWn" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "CMP Office Shutters"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/chief_mp_office) -"rWs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"rWv" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rWx" = ( -/obj/structure/platform/metal/almayer, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"rWy" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"rWz" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) -"rWL" = ( -/obj/structure/barricade/metal, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"rWT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"rXd" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"rXj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"rXk" = ( -/obj/structure/barricade/plasteel/metal{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"rXq" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_p) -"rXv" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"rXE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = -32 - }, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/execution) -"rXF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"rXH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"rXQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"rXS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/delta) -"rXU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"rYh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"rYi" = ( -/obj/structure/bed/chair, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"rYp" = ( -/obj/effect/landmark/start/marine/medic/delta, -/obj/effect/landmark/late_join/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"rYv" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/computer/station_alert{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"rYI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rYJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices/flight) -"rYU" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"rZt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"rZB" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 9 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_medbay) -"rZP" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"rZZ" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_y = 30 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"sab" = ( -/obj/effect/landmark/start/doctor, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"sai" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"saL" = ( -/obj/structure/machinery/door/airlock/almayer/generic/corporate{ - name = "Corporate Liaison's Closet" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"saX" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 8; - id = "almayerlink_med1_req" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"sbq" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"sbt" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "safe_armory"; - name = "\improper Hangar Armory Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"sbE" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"sbJ" = ( -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/powered/agent) -"sbP" = ( -/obj/effect/landmark/start/police, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/landmark/late_join/police, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"sbZ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_umbilical) -"sco" = ( -/obj/structure/sign/prop1{ - layer = 3.1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"sct" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"scy" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"scz" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer5" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"scE" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"scF" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"scH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"scN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"scX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"sdd" = ( -/obj/item/tool/wirecutters/clippers, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"sdf" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"sdn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/double/blue{ - dir = 4; - light_color = "#a7dbc7" - }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - pixel_y = 23; - pixel_x = -8; - density = 0 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/upper_medical) -"sdu" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/medical_science) -"sdv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"sdC" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"sdO" = ( -/obj/structure/ladder{ - height = 1; - id = "med1" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/lower_medical_lobby) -"seL" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"sfz" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"sfA" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"sfT" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/port) -"sfV" = ( -/obj/structure/machinery/alarm/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"sgc" = ( -/obj/structure/closet/crate/freezer/cooler{ - pixel_x = -7 - }, -/obj/structure/largecrate/random/mini/ammo{ - pixel_x = 10; - pixel_y = -4 - }, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/sign/safety/storage{ - pixel_x = -24 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"sgi" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/processing) -"sgj" = ( -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/storage/belt/medical/full, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/item/roller/medevac, -/obj/structure/machinery/power/apc/almayer/west, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"sgm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = 10; - pixel_y = 14 - }, -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/hotdog{ - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sgs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"sgx" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform_decoration/metal/almayer/northeast, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"sgD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"sgE" = ( -/obj/structure/bed, -/obj/structure/machinery/flasher{ - id = "Cell 3"; - pixel_x = -24 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"sgH" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"sgL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/port_midship_hallway) -"sgR" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/facepaint/green, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"sgU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"she" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"shh" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"sht" = ( -/turf/open/floor/almayer, -/area/almayer/living/pilotbunks) -"shC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"shL" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"sin" = ( -/turf/open/floor/almayer/bluecorner, -/area/almayer/hallways/upper/midship_hallway) -"sir" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "panicroomback"; - name = "\improper Safe Room Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"sit" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"siy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/hallways/lower/port_midship_hallway) -"siC" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/lower/port_fore_hallway) -"siN" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Nitrogen Control Console" - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"siT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"siW" = ( -/obj/structure/machinery/body_scanconsole, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"sje" = ( -/turf/open/floor/almayer/empty/vehicle_bay, -/area/almayer/hallways/lower/vehiclehangar) -"sjj" = ( -/obj/structure/machinery/keycard_auth{ - pixel_x = -7; - pixel_y = 25 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8; - pixel_y = 6 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"sjr" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D1"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/lifeboat) -"sjz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"sjG" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"sjM" = ( -/obj/effect/landmark/start/reporter, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"skj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"skl" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/upper_medical) -"skn" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/sea_office) -"skC" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 6 - }, -/obj/structure/machinery/meter, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"skF" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/charlie_delta_shared) -"skL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"skR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/closet/secure_closet/cmdcabinet{ - desc = "A bulletproof cabinet containing communications equipment."; - name = "communications cabinet"; - pixel_y = 24; - req_access = null; - req_one_access_txt = "207;203" - }, -/obj/item/device/radio, -/obj/item/device/radio/listening_bug/radio_linked/wy, -/obj/item/device/radio/listening_bug/radio_linked/wy{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"sld" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"slf" = ( -/obj/structure/machinery/brig_cell/cell_6{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"sli" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"slo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"slv" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"slF" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"smi" = ( -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"smw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"smA" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -16; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"smH" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"smU" = ( -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/panic) -"smW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"snb" = ( -/obj/structure/ladder{ - height = 1; - id = "cicladder3" - }, -/turf/open/floor/plating/almayer, -/area/almayer/living/briefing) -"sni" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/command/cic) -"snt" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"snw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"snx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"snE" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"snI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Delta Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Delta Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"snM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/squads/req) -"snN" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"snR" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"snX" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 16; - pixel_y = 27 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/shipboard/brig/processing) -"soq" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"sov" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/engine_core) -"soA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"soJ" = ( -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"soK" = ( -/obj/item/storage/firstaid/fire/empty, -/obj/item/storage/firstaid/o2/empty, -/obj/item/storage/firstaid/rad/empty, -/obj/item/storage/firstaid/toxin/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_medbay) -"soP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"soT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"soX" = ( -/obj/structure/window/reinforced/toughened, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"spd" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"spF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"spH" = ( -/obj/structure/pipes/standard/simple/hidden/universal{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"spK" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"spS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/emerald/west, -/area/almayer/squads/charlie) -"spT" = ( -/obj/structure/closet/crate{ - desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; - name = "special operations crate" - }, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"sqa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sqf" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/upper_medical) -"sqg" = ( -/turf/closed/wall/almayer, -/area/almayer/engineering/lower) -"sql" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"sqo" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering) -"sqW" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/tomatoseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"srh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"srl" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"srO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"srR" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"srT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Evidence Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/evidence_storage) -"ssk" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"ssU" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/starboard) -"ssW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"ssX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"ssZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"sta" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/navigation) -"str" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/obj/structure/catwalk{ - health = null - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"stu" = ( -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"stO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/uscm/brig, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/perma) -"stP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"stR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sub" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"suy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"suH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_midship_hallway) -"suJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"suU" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"svf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"svl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"svq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"svt" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green/southwest, -/area/almayer/hallways/lower/port_midship_hallway) -"svw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"svF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/effect/landmark/yautja_teleport, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"swn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"swt" = ( -/turf/open/floor/almayer/greencorner, -/area/almayer/living/grunt_rnr) -"swx" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"swE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/living/grunt_rnr) -"swG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"swH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = 28 - }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - pixel_x = -17 - }, -/obj/item/device/flashlight/lamp, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"swM" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"swN" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/blue, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"sxD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Officer's Bunk" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"sxE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/hallways/upper/port) -"sxS" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"sxW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/cichallway) -"syg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - access_modified = 1; - closeOtherId = "astroladder_n"; - name = "\improper Astronavigational Deck"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/navigation) -"syj" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"syp" = ( -/turf/open/floor/almayer/silver/southeast, -/area/almayer/maint/upper/u_m_p) -"syH" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/delta) -"syO" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"szf" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/coatrack{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"szE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/offices) -"szG" = ( -/obj/item/stack/sheet/glass/reinforced{ - amount = 50 - }, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"szM" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"szO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"szU" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/numbertwobunks) -"sAc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"sAw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"sAz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/starboard) -"sAC" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/ce_room) -"sAD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"sAS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"sBg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"sBL" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"sBQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "briglobby"; - name = "\improper Brig Cells" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"sBY" = ( -/obj/item/tool/wet_sign, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"sCg" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sCA" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"sCD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_x = -5; - pixel_y = 16 - }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = 13; - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"sCI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/living/pilotbunks) -"sCQ" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"sCT" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_f_s) -"sCV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"sCW" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"sDu" = ( -/obj/item/clothing/under/marine/dress, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"sDx" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"sDA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"sDD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"sDM" = ( -/turf/open/floor/almayer/blue/northwest, -/area/almayer/squads/delta) -"sEd" = ( -/obj/structure/machinery/cryopod/right, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"sEg" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"sEi" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/living/grunt_rnr) -"sEp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"sEq" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"sEt" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/hallways/hangar) -"sEu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"sEz" = ( -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/starboard_hallway) -"sEK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"sEM" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -12; - pixel_y = -28 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4; - layer = 3.3; - pixel_x = -17 - }, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"sER" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"sEZ" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 26 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/armory) -"sFf" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/starboard_missiles) -"sFu" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/starboard_hallway) -"sGh" = ( -/turf/open/floor/almayer/uscm/directional, -/area/almayer/command/lifeboat) -"sGw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_s) -"sGK" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"sGL" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"sGQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"sGU" = ( -/obj/structure/mirror, -/turf/closed/wall/almayer, -/area/almayer/living/gym) -"sGZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/airoom) -"sHe" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"sHm" = ( -/obj/structure/disposalpipe/up/almayer{ - id = "almayerlink_OT_req" - }, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"sHo" = ( -/obj/structure/pipes/unary/outlet_injector{ - dir = 8; - name = "Mixed Air Injector" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 1; - pixel_y = -24 - }, -/turf/open/floor/engine, -/area/almayer/engineering/airmix) -"sHp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/small, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"sHx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"sHC" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/upper/fore_hallway) -"sHI" = ( -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"sHM" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/pilotbunks) -"sHY" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"sIr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"sIu" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"sIA" = ( -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/engineering/port_atmos) -"sII" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES ReceptStairs2"; - name = "\improper ARES Reception Stairway Shutters"; - plane = -7 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"sIR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"sIU" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sJa" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = -26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"sJC" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"sJI" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/aluminum{ - amount = 20 - }, -/obj/item/stack/sheet/copper{ - amount = 20; - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/gold{ - amount = 3; - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/silver{ - amount = 5; - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"sJY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/living/port_emb) -"sKa" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/morgue) -"sKf" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"sKI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window/reinforced/toughened{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"sKM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"sKY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8; - layer = 3.25 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"sLk" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder4" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) -"sLx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"sLA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"sLX" = ( -/turf/open/floor/almayer/emeraldcorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"sMu" = ( -/obj/item/trash/uscm_mre, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"sMM" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"sNb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"sNz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"sNI" = ( -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"sNL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sNO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"sNP" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"sNR" = ( -/turf/closed/wall/almayer/research/containment/wall/corner, -/area/almayer/medical/containment/cell/cl) -"sOi" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"sOr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_s) -"sOt" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"sOv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/structure/machinery/door_control/cl/quarter/windows{ - pixel_x = 11; - pixel_y = 37 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"sOw" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/basketball) -"sOx" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/turf/open/floor/almayer/cargo/southwest, -/area/almayer/engineering/upper_engineering) -"sOD" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"sOK" = ( -/obj/structure/disposalpipe/down/almayer{ - dir = 2; - id = "ares_vault_out"; - name = "wycomms" - }, -/turf/closed/wall/almayer/outer, -/area/almayer/command/airoom) -"sOL" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/maint/upper/mess) -"sOZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/paper_bin/wy{ - pixel_y = 8; - pixel_x = -7 - }, -/obj/structure/surface/table/almayer, -/obj/item/tool/pen{ - pixel_y = 4; - pixel_x = -8 - }, -/obj/item/folder/blue{ - pixel_y = 5; - pixel_x = 6 - }, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"sPa" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/attachable/flashlight/grip, -/obj/item/ammo_box/magazine/l42a{ - pixel_y = 14 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"sPb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"sPc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"sPF" = ( -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"sPJ" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"sPY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"sQF" = ( -/turf/open/floor/almayer/red, -/area/almayer/shipboard/port_missiles) -"sQO" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"sRZ" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/fore_hallway) -"sSa" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - dir = 2; - no_panel = 1; - not_weldable = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"sSc" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer/tcomms, -/area/almayer/shipboard/weapon_room) -"sSj" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/north1) -"sSl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"sSC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/squads/delta) -"sSG" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = -17 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Charlie Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Charlie Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"sSV" = ( -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south2) -"sTd" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/living/basketball) -"sTm" = ( -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"sTo" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/shipboard/brig/cic_hallway) -"sTU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"sTV" = ( -/obj/structure/machinery/power/apc/almayer/hardened/north{ - cell_type = /obj/item/cell/hyper - }, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"sUg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/shipboard/brig/cic_hallway) -"sUi" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"sUj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/bluefull, -/area/almayer/squads/delta) -"sUk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"sUs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"sUE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"sUO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"sUS" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"sVc" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/orangeseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"sVv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/aft_hallway) -"sVK" = ( -/obj/structure/platform/metal/almayer/west, -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"sVT" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"sVV" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/starboard) -"sWb" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/fore_hallway) -"sWp" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"sWw" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"sWC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"sWW" = ( -/obj/structure/machinery/flasher{ - alpha = 1; - id = "Containment Cell 3"; - layer = 2.1; - name = "Mounted Flash"; - pixel_y = 30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"sXc" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform_decoration/metal/almayer/northwest, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/north1) -"sXd" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/containment) -"sXq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"sXt" = ( -/obj/structure/machinery/cm_vending/clothing/tl/alpha{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"sXw" = ( -/obj/effect/landmark/start/marine/engineer/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"sXB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"sXC" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"sXE" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Auxiliary Support Officer's Room" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/auxiliary_officer_office) -"sXQ" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/appleseed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/shipboard/brig/cells) -"sYh" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"sYl" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/shipboard/brig/medical) -"sYm" = ( -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"sYr" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"sYD" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = 30 - }, -/obj/structure/sign/safety/debark_lounge{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"sYP" = ( -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"sYT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"sYU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/upper/midship_hallway) -"sZc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"sZe" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_aft_hallway) -"sZq" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"sZs" = ( -/obj/structure/machinery/light, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"sZy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"sZH" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/semki{ - layer = 2; - pixel_x = -13; - pixel_y = 14 - }, -/obj/item/prop/magazine/boots/n054{ - pixel_x = 29 - }, -/obj/item/prop/magazine/dirty/torn{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/port_emb) -"sZY" = ( -/obj/structure/blocker/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"tab" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/flashbangs{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/restraint/handcuffs, -/obj/item/storage/firstaid/regular, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"tan" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"tat" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"tau" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ - dir = 2; - name = "\improper Brig Permanent Confinement" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "perma_lockdown_1"; - name = "\improper Perma Lockdown Shutter" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"taw" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_s) -"taz" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"taH" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - id = "Containment Cell 2"; - locked = 1; - name = "\improper Containment Cell 2" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - dir = 4; - id = "Containment Cell 2"; - name = "\improper Containment Cell 2" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"taK" = ( -/obj/item/device/multitool, -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"taV" = ( -/obj/effect/projector{ - name = "Almayer_Down1"; - vector_x = 19; - vector_y = -98 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/upper/starboard) -"tbk" = ( -/obj/item/device/flashlight/lamp/green{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/door_control/cl/office/evac{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/structure/machinery/door_control/cl/quarter/windows{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"tcd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tcm" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"tcO" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) -"tcS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tcZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/upper_engineering/port) -"tda" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security{ - access_modified = 1; - dir = 2; - name = "\improper Security Checkpoint"; - req_access = null; - req_one_access_txt = "3;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/briefing) -"tdc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"tdf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/squads/delta) -"tdi" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tdv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = -17 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/engine_core) -"tdy" = ( -/obj/structure/bed/sofa/south/grey/right, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/lobby) -"tdE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"tdH" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/item/bedsheet/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tdI" = ( -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"tdT" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"teg" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"teo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"ter" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"tez" = ( -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer, -/area/almayer/living/cryo_cells) -"teE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"teY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"teZ" = ( -/obj/structure/machinery/door_control{ - id = "ARES StairsLower"; - name = "ARES Core Lockdown"; - pixel_x = -24; - pixel_y = -8; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"tfb" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/starboard) -"tff" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/lobby) -"tfE" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"tfF" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/hallways/upper/midship_hallway) -"tfH" = ( -/obj/structure/machinery/light/containment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"tfQ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"tfZ" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -7; - pixel_y = 17 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 12; - pixel_y = 28 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/starboard_hallway) -"tge" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"tgm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"tgy" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/lower/repair_bay) -"tgz" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"tgJ" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"tgK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"tgV" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_medbay) -"thc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/engine_core) -"thq" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 16 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"thv" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/telecomms) -"thA" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/alpha_bravo_shared) -"thL" = ( -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"thN" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/hydroponics) -"thP" = ( -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"thV" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"tie" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/red/southeast, -/area/almayer/maint/upper/u_a_p) -"tig" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"tii" = ( -/obj/structure/machinery/firealarm{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4; - layer = 3.25 - }, -/obj/structure/transmitter{ - name = "CE Office Telephone"; - phone_category = "Offices"; - phone_id = "CE Office"; - pixel_x = -8; - pixel_y = 29 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/ce_room) -"tim" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"tiE" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/squads/req) -"tiF" = ( -/obj/structure/machinery/keycard_auth{ - pixel_y = 25 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/chief_mp_office) -"tiI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/syringes{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/syringes, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"tiK" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"tiR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/weapon_room) -"tiW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"tiX" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"tiY" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/newspaper, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"tjj" = ( -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"tjl" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"tjn" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"tjw" = ( -/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/almayer/living/tankerbunks) -"tjH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/headset/almayer/mt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"tjJ" = ( -/obj/structure/platform/metal/almayer, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"tjO" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer/orange, -/area/almayer/maint/hull/lower/l_m_s) -"tkd" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/obj/structure/sign/safety/south{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"tkg" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"tkn" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"tkq" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/weapon_room) -"tkF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"tkN" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "15;16;21"; - vend_x_offset = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"tkR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/starboard) -"tld" = ( -/obj/structure/machinery/prop/almayer/computer{ - dir = 8; - pixel_x = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"tlk" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/general_equipment) -"tln" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"tlp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - id = "Cell 4"; - name = "\improper Courtyard Divider" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"tlv" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"tlA" = ( -/obj/effect/decal/medical_decals{ - icon_state = "docdecal2" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"tlM" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/maint/upper/u_a_s) -"tmg" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/obj/item/reagent_container/hypospray, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"tml" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tmB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"tmE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"tmH" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera"; - pixel_y = 6 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/execution) -"tmQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"tmV" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - SecVault"; - dir = 8 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"tmX" = ( -/obj/effect/landmark/start/professor, -/obj/effect/landmark/late_join/cmo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"tnb" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"tne" = ( -/obj/structure/machinery/door_control/cl/quarter/backdoor{ - pixel_x = -25; - pixel_y = 23 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"tni" = ( -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/operating_room_three) -"tnz" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"tnY" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"tob" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"tof" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"tos" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"tot" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"tou" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/offices) -"tov" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"toD" = ( -/obj/structure/largecrate/supply/generator, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 2.9; - pixel_x = -10; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"toO" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/engineering_construction, -/obj/item/folder/black_random, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"toQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"toS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/obj/item/desk_bell{ - anchored = 1; - pixel_x = -6; - pixel_y = 10 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_medbay) -"tpa" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"tpd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"tpn" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/evidence_storage) -"tpB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_fore_hallway) -"tpD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/bridgebunks) -"tpG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"tpR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tqf" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"tqu" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES ReceptStairs1"; - name = "ARES Reception Shutters"; - pixel_y = -24; - req_one_access_txt = "91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"tqE" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank/custom, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"tqO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/hallways/upper/port) -"tqQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"tqV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"tra" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = null; - req_one_access_txt = "19;34;30" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_p) -"trb" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/south1) -"trh" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower) -"tru" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"trx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/midship_hallway) -"trB" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/starboard) -"trF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/storage/firstaid/adv{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/medical_science) -"trU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen/blue/clicky{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/tool/pen/red/clicky{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/tool/pen/clicky{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"tsa" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, -/obj/item/clothing/suit/chef/classic, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"tsn" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"tsr" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/upper/mess) -"tst" = ( -/obj/structure/machinery/cryopod/right, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"tsy" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"tsC" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Research Armory"; - name = "\improper Armory Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"tsE" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"tsM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"tsX" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/lobby) -"ttd" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/port) -"tte" = ( -/obj/structure/pipes/vents/pump/no_boom{ - welded = 1 - }, -/turf/open/floor/plating, -/area/almayer/powered/agent) -"ttB" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"ttD" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"ttX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular{ - pixel_y = 6 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -8 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -10; - pixel_y = 14 - }, -/obj/item/storage/box/wy_mre{ - pixel_x = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/corporateliaison) -"tuk" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/general_equipment) -"tul" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/closet/secure_closet/brig/prison_uni, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"tuo" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"tup" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tuA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/shipboard/port_missiles) -"tuC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"tuJ" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"tuN" = ( -/turf/open/floor/almayer/orange, -/area/almayer/hallways/hangar) -"tuX" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"tuZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/weapon_room) -"tvl" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tvt" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_s) -"tvw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"tvA" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"tvJ" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/brig/starboard_hallway) -"tvM" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"tvN" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"tvQ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/red/northeast, -/area/almayer/lifeboat_pumps/south1) -"twp" = ( -/obj/structure/ladder{ - height = 1; - id = "AftStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_s) -"twB" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer2" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"twI" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/door_control{ - id = "bot_uniforms"; - name = "Uniform Vendor Lockdown"; - pixel_x = -24; - pixel_y = 18; - req_access_txt = "31" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"twQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"twW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/item/tool/warning_cone{ - pixel_x = -21; - pixel_y = 3 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"txf" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"txp" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"txy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"txE" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"txH" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"txS" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"txW" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"tyb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"tyy" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north1) -"tyC" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"tyD" = ( -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"tyK" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/shipboard/starboard_missiles) -"tzd" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"tzr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"tzw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"tzx" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lockerroom) -"tzF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/aft_hallway) -"tzL" = ( -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer/test_floor5, -/area/almayer/medical/hydroponics) -"tzO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/chemistry, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"tzP" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"tAb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"tAq" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/clothing/head/helmet/space/compression/uscm, -/obj/item/cell/crap{ - pixel_x = 7 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"tAt" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "ARES StairsLock"; - name = "ARES Exterior Lockdown" - }, -/obj/effect/step_trigger/ares_alert/access_control, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - density = 0; - desc = "An outlet for the pneumatic delivery system."; - icon_state = "delivery_outlet"; - name = "returns outlet"; - pixel_x = -7; - pixel_y = 28; - range = 0 - }, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"tAL" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/pilotbunks) -"tAN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/squads/bravo) -"tAU" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"tAW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tBq" = ( -/obj/item/tool/crowbar, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"tBu" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/sentry_holder/almayer, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"tBP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes, -/obj/item/tool/lighter, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/execution_storage) -"tBY" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"tCd" = ( -/obj/item/folder/red{ - desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; - name = "folder: 28"; - pixel_x = -4; - pixel_y = 5 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/crayon{ - pixel_x = 9; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"tCx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) -"tCC" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Reception Interior"; - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"tCH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ - closeOtherId = "brignorth"; - dir = 2; - name = "\improper Brig Armoury"; - req_access = null; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"tCT" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"tDZ" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"tEd" = ( -/obj/structure/reagent_dispensers/acidtank, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"tEi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"tEu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"tEB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"tEC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"tEO" = ( -/obj/effect/landmark/start/marine/medic/charlie, -/obj/effect/landmark/late_join/charlie, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"tFe" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsUpper"; - name = "\improper ARES Core Shutters"; - plane = -7 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"tFJ" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) -"tFO" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/red/north, -/area/almayer/maint/upper/u_a_p) -"tFP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"tFS" = ( -/obj/structure/machinery/computer/supplycomp, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"tFW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/lifeboat_pumps/south1) -"tGd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_20" - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"tGh" = ( -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/lower_medical_lobby) -"tGi" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"tGj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"tGs" = ( -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south1) -"tGG" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/briefing) -"tGH" = ( -/obj/structure/sign/safety/restrictedarea, -/obj/structure/sign/safety/security{ - pixel_x = 15 - }, -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) -"tGS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tGT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster/art{ - pixel_y = 32 - }, -/obj/structure/machinery/photocopier/wyphotocopier, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"tHk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"tHl" = ( -/obj/structure/platform/metal/almayer/north, -/obj/structure/platform/metal/almayer/west, -/obj/structure/platform_decoration/metal/almayer/northeast, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"tHr" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/item/pizzabox/mushroom{ - pixel_y = 11 - }, -/obj/item/poster, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/shipboard/brig/cic_hallway) -"tHu" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer/silverfull, -/area/almayer/command/airoom) -"tHv" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/living/briefing) -"tHF" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tHQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"tHS" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cells) -"tId" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/almayer/aicore/no_build/ai_cargo, -/area/almayer/command/airoom) -"tIe" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/lower/engine_core) -"tIl" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"tIp" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Dorms" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/port_emb) -"tIu" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"tIF" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"tIK" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = 4 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"tIN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"tIQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"tIS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"tIX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"tJi" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"tJm" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"tJq" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"tJz" = ( -/obj/structure/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"tJR" = ( -/obj/structure/machinery/vending/cigarette, -/obj/structure/sign/safety/medical{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"tJV" = ( -/obj/structure/machinery/vending/hydronutrients, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"tKr" = ( -/obj/structure/machinery/cryopod/right{ - dir = 2 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"tKY" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"tLa" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "firearm_storage_armory"; - name = "\improper Armory Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/armory) -"tLc" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/plants{ - pixel_x = -3 - }, -/obj/item/storage/bag/plants{ - pixel_x = 3 - }, -/obj/item/storage/bag/plants{ - pixel_y = -3 - }, -/obj/item/tool/scythe, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"tLZ" = ( -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tMc" = ( -/obj/structure/machinery/chem_master/industry_mixer, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower/workshop/hangar) -"tMi" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"tMU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"tMW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"tNw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"tNB" = ( -/obj/structure/bed/sofa/south/grey/left, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"tNP" = ( -/obj/structure/sign/safety/debark_lounge{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"tNR" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"tNY" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"tOr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/hydroponics) -"tOu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"tOC" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"tON" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"tOW" = ( -/turf/open/floor/almayer/green/southwest, -/area/almayer/living/grunt_rnr) -"tPc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"tPj" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - access_modified = 1; - name = "\improper Requisition's Office"; - req_one_access = null; - req_one_access_txt = "1;26" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"tPm" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - pixel_x = 2; - pixel_y = 5 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"tPD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"tPI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"tQd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"tQe" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tQi" = ( -/obj/effect/landmark/start/warrant, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/landmark/late_join/chief_police, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"tQL" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"tQV" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/south1) -"tRs" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/frame/light_fixture, -/obj/item/frame/light_fixture, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"tRD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/basketball) -"tSm" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -16 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tSp" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"tSB" = ( -/turf/open/floor/almayer/orangecorner/north, -/area/almayer/living/briefing) -"tSF" = ( -/obj/structure/bed/chair/comfy/delta, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"tSX" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"tTk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"tTp" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"tTu" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/lifeboat_pumps/south1) -"tTC" = ( -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tTD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/uscm_mre, -/obj/item/storage/box/uscm_mre, -/obj/item/book/manual/chef_recipes, -/obj/structure/sign/safety/coffee{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/captain_mess) -"tTG" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"tTO" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/starboard_hallway) -"tTZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"tUh" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"tUo" = ( -/obj/item/clipboard, -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"tUx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"tUK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"tUN" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "35" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"tUS" = ( -/obj/item/toy/beach_ball/holoball, -/obj/structure/holohoop{ - density = 0; - pixel_y = 29 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"tVh" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"tVq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha) -"tVx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"tVZ" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/hallways/lower/repair_bay) -"tWd" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tWi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"tWl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Disposals" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_p) -"tWp" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"tWF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"tWL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/silver, -/area/almayer/hallways/lower/repair_bay) -"tWY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/upper_medical) -"tXa" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_y = 13 - }, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"tXb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"tXc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"tXi" = ( -/obj/structure/machinery/conveyor_switch{ - id = "gym_2"; - name = "treadmill switch" - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"tXj" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/item/stack/sheet/mineral/plastic/small_stack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/obj/item/frame/rack, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"tXn" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"tXo" = ( -/turf/open/floor/almayer/redcorner, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tXM" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/sea_office) -"tXT" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"tYi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"tYr" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"tYw" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecalbottomleft"; - pixel_x = 20 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = 28 - }, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"tYM" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"tYV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"tYX" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/bridgebunks) -"tZc" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"tZg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/port) -"tZZ" = ( -/obj/structure/machinery/cryopod, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"uac" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"uag" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/mess) -"uah" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"ual" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/research/containment/corner_var1/east, -/area/almayer/medical/containment/cell) -"uay" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"uaA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"uaG" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"uaI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/processor{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"uaU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - layer = 3.1; - pixel_y = 11 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"uaV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"ubv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/fore_hallway) -"ubA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ubI" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/black_random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/tool/stamp{ - name = "Corporate Liaison's stamp"; - pixel_x = -8; - pixel_y = 6 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"ubQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ucp" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/starboard) -"ucw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"ucy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) -"ucz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/overwatch/almayer{ - dir = 8; - layer = 3.2; - pixel_x = -17; - pixel_y = 15 - }, -/obj/structure/machinery/light, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Bravo Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Bravo Overwatch" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"udf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"udi" = ( -/turf/open/floor/almayer/red, -/area/almayer/living/briefing) -"udr" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lower_medical_lobby) -"udv" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/hallways/upper/fore_hallway) -"udx" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"udG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"udK" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"udR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"udZ" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"ued" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Exterior Airlock"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"uek" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/magazine/boots/n117{ - pixel_x = 2; - pixel_y = 5 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"uew" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"uey" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/obj/structure/medical_supply_link/green, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lockerroom) -"uez" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"ueG" = ( -/obj/item/bedsheet/orange, -/obj/structure/bed{ - icon_state = "psychbed" - }, -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - density = 0; - pixel_y = 30; - req_access = list(); - req_access_txt = "6" - }, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"ueJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"ueY" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"ueZ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha) -"ufh" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"ufx" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering) -"ufJ" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"ufL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"ugj" = ( -/turf/open/floor/almayer/orange/east, -/area/almayer/maint/hull/lower/l_m_s) -"ugo" = ( -/obj/item/tool/weldpack{ - pixel_y = 15 - }, -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"ugu" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"ugw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner, -/area/almayer/shipboard/brig/starboard_hallway) -"ugJ" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/small_case{ - pixel_x = -1; - pixel_y = 9 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"ugZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"uhh" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"uhl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/almayer/living/offices) -"uhq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uhA" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"uhE" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"uhM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"uhP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"uig" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"uiC" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/lower/engine_core) -"uiG" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/starboard) -"uiK" = ( -/obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"uiR" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/west, -/area/almayer/engineering/upper_engineering/starboard) -"uiT" = ( -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"uiZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ - dir = 1; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cichallway) -"ujn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"ujz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"ujV" = ( -/obj/structure/machinery/vending/dinnerware, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"uky" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"ukC" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"ukP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"ukV" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"uli" = ( -/turf/open/floor/grass, -/area/almayer/living/starboard_garden) -"ulo" = ( -/obj/structure/toilet{ - dir = 8; - layer = 2.9; - pixel_y = 8 - }, -/obj/structure/window{ - layer = 2.95; - pixel_y = -2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/commandbunks) -"uly" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/squads/req) -"ulH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"ulZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"umk" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"umm" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light/small, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"umy" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"umI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/aft_hallway) -"umS" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/pilotbunks) -"umW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/vending/cigarette/free{ - pixel_y = 16 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"unh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/item/tool/screwdriver, -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"uns" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/carrotseed, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/green/northwest, -/area/almayer/shipboard/brig/cells) -"unx" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"unQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"unT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/crowbar, -/obj/item/clothing/head/headset{ - pixel_y = -7 - }, -/obj/item/storage/bible, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"uoi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"uoj" = ( -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"uoA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/starboard_point_defense) -"uoH" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer/silver, -/area/almayer/command/computerlab) -"uoO" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"upM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"upO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/living/offices) -"upR" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 7; - pixel_y = 25 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"upS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"upW" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"uqd" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "W_Containment Cell 1"; - name = "Containment Lockdown"; - pixel_x = -7; - pixel_y = 1; - req_one_access_txt = "19;28" - }, -/obj/structure/machinery/door_display/research_cell{ - id = "Containment Cell 1"; - name = "Cell 1 Control"; - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"uqg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"uqh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"uqo" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"uqs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/m41a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"uqA" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/squads/bravo) -"uqI" = ( -/obj/structure/machinery/light{ - pixel_x = 16 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"urk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/hallways/lower/starboard_umbilical) -"urp" = ( -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south2) -"ury" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"urM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"urN" = ( -/obj/effect/landmark/start/marine/leader/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"usm" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/waterhazard{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"usq" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/panic) -"usu" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"usy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"usX" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"usZ" = ( -/obj/structure/pipes/unary/outlet_injector, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower) -"utn" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"uto" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/metal{ - amount = 50 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering) -"utp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"utK" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"utX" = ( -/turf/closed/wall/almayer/research/containment/wall/connect_e2{ - icon_state = "containment_wall_connect_e" - }, -/area/almayer/medical/containment/cell) -"utZ" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/shipboard/brig/processing) -"uuj" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 5 - }, -/obj/item/reagent_container/food/condiment/hotsauce/cholula{ - pixel_x = -12; - pixel_y = 14 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"uul" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 14; - pixel_y = -25 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"uun" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"uuu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - layer = 2.7; - pixel_y = 2 - }, -/obj/structure/largecrate/random/case, -/obj/effect/spawner/prop_gun/m41aMK1{ - pixel_y = 7 - }, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -10; - pixel_y = 1 - }, -/obj/item/tool/screwdriver{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uux" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Evacuation Airlock SU-1"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"uuD" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"uuI" = ( -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/port_midship_hallway) -"uuR" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"uuT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"uve" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/almayer/aicore/no_build/ai_silver/east, -/area/almayer/command/airoom) -"uvh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_aft_hallway) -"uvp" = ( -/obj/structure/largecrate/supply, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"uvt" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/living/bridgebunks) -"uvu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/squads/bravo) -"uvP" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"uvU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item{ - pixel_x = 5 - }, -/obj/item/facepaint/black{ - pixel_x = -10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uvY" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/cells) -"uws" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/shipboard/port_missiles) -"uwt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uwv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/weapon_room/notunnel) -"uwN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"uwZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"uxa" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"uxb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"uxl" = ( -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"uxp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/squads/charlie) -"uxC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"uxO" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal8"; - pixel_x = -16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal7"; - pixel_x = 16; - pixel_y = -16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal6"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -16; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"uxX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"uyd" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/starboard) -"uys" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/squads/req) -"uyC" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/lifeboat_pumps/south2) -"uyH" = ( -/turf/closed/wall/almayer/research/containment/wall/divide, -/area/almayer/medical/containment/cell) -"uyQ" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"uzv" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"uzy" = ( -/obj/item/reagent_container/glass/bucket, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"uzE" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/ce_room) -"uAb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uAj" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/port_missiles) -"uAl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/port) -"uAC" = ( -/obj/item/bedsheet/purple{ - layer = 3.2 - }, -/obj/item/bedsheet/purple{ - pixel_y = 13 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/living/port_emb) -"uAK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/lower/engine_core) -"uAL" = ( -/obj/structure/bed/chair/wood/normal, -/obj/item/bedsheet/brown, -/obj/item/toy/plush/farwa, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/cells) -"uAP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"uAW" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"uBi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"uBj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uBx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"uBG" = ( -/obj/item/tool/weldingtool, -/obj/structure/surface/rack, -/turf/open/floor/almayer/red, -/area/almayer/maint/upper/u_a_p) -"uBM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/combat_correspondent) -"uBN" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"uBO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = -3 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"uCh" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/living/grunt_rnr) -"uCt" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uCw" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"uCM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"uCR" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uCW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cichallway) -"uDg" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_bow) -"uDn" = ( -/obj/structure/ladder{ - height = 1; - id = "bridge2" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/navigation) -"uDA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"uDW" = ( -/obj/structure/machinery/cm_vending/clothing/tl/delta{ - density = 0; - pixel_x = 32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"uEO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"uFd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"uFg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"uFo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"uFp" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"uFq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"uFH" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"uGc" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"uGf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"uGk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"uGN" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"uGQ" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"uGU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"uHk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/cryo_cells) -"uHr" = ( -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/south2) -"uHT" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"uIv" = ( -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"uIA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"uII" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) -"uIJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/red, -/area/almayer/squads/alpha) -"uIT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/alpha_bravo_shared) -"uJb" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"uJk" = ( -/obj/structure/prop/almayer/name_stencil{ - icon_state = "almayer4" - }, -/turf/open/floor/almayer_hull/outerhull_dir, -/area/space) -"uJM" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"uJU" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"uKd" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"uKe" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "gym_2"; - name = "treadmill" - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"uKl" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"uKH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"uKV" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/food_storage{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"uLn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"uLE" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/shipboard/brig/medical) -"uLG" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2, -/obj/item/reagent_container/food/snacks/mre_pack/xmas1, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"uMc" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/starboard) -"uMf" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"uMj" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/port_missiles) -"uMk" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 1 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"uMl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/squads/alpha) -"uMn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald, -/area/almayer/living/port_emb) -"uMS" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/squads/delta) -"uNf" = ( -/obj/structure/sign/safety/conference_room{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"uNg" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"uNp" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"uNq" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower/workshop/hangar) -"uNz" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"uNB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uNM" = ( -/turf/open/floor/almayer/emeraldcorner/west, -/area/almayer/living/briefing) -"uNN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/blue, -/area/almayer/living/basketball) -"uNQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"uNV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"uOh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"uOi" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/lifeboat_pumps/south2) -"uOJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"uPr" = ( -/turf/open/floor/almayer/blue/northeast, -/area/almayer/living/basketball) -"uPE" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"uPI" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - explo_proof = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/transmitter/rotary{ - name = "AI Reception Telephone"; - phone_category = "ARES"; - phone_color = "blue"; - phone_id = "AI Reception" - }, -/turf/open/floor/almayer/no_build/ai_floors, -/area/almayer/command/airoom) -"uPP" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 2; - name = "\improper Atmospherics Wing" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower) -"uPQ" = ( -/obj/item/weapon/dart/green, -/obj/structure/dartboard{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uPW" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"uPX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"uQm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"uQo" = ( -/obj/structure/machinery/disposal, -/obj/item/reagent_container/food/drinks/cans/beer{ - layer = 3.3; - pixel_x = -4; - pixel_y = 15 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"uRo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha) -"uRs" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/command/lifeboat) -"uRt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/upper_medical) -"uRD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"uRM" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/red{ - layer = 3.2 - }, -/obj/item/bedsheet/medical{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"uRR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/s_bow) -"uRY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/port) -"uSk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/upper/aft_hallway) -"uSH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/reagent_dispensers/water_cooler{ - density = 0; - pixel_x = 12; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"uSS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/lockerroom) -"uSU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"uTk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uTl" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"uTs" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_bow) -"uTv" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"uTE" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"uTN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"uTP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_aft_hallway) -"uTS" = ( -/obj/vehicle/powerloader, -/obj/structure/platform/metal/almayer/east, -/obj/structure/platform/metal/almayer/west, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/repair_bay) -"uTU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"uTV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"uTZ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering/port) -"uUe" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/upper_engineering/port) -"uUf" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -9; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_y = -2 - }, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/hallways/lower/repair_bay) -"uUi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"uUo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie) -"uUt" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/starboard_point_defense) -"uUu" = ( -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/perma) -"uUz" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - dir = 4; - id = "engidorm"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"uUB" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - explo_proof = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/item/paper_bin/uscm{ - pixel_x = -12; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = -14 - }, -/obj/structure/machinery/aicore_lockdown{ - pixel_x = 3; - pixel_y = 4 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"uVc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/workshop) -"uVd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"uVh" = ( -/obj/structure/filingcabinet/seeds, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"uVp" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"uVv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"uVA" = ( -/turf/open/floor/almayer/silver/east, -/area/almayer/shipboard/brig/cic_hallway) -"uVD" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/plating_striped/west, -/area/almayer/living/cryo_cells) -"uVV" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"uVX" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, -/turf/open/floor/almayer/plate, -/area/almayer/living/pilotbunks) -"uVY" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"uWc" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"uWk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/blue/northwest, -/area/almayer/hallways/upper/midship_hallway) -"uWm" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"uWV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"uWY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"uXf" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Hypersleep Access"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"uXj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell) -"uXk" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/engine_core) -"uXm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"uXu" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "Interrogation Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Interrogation" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/interrogation) -"uXy" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_2"; - name = "range shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"uXE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/upper/midship_hallway) -"uXJ" = ( -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north2) -"uXL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/tcomms, -/area/almayer/engineering/upper_engineering/starboard) -"uXU" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"uYa" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"uYd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 12 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"uYg" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"uYn" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"uYH" = ( -/obj/effect/landmark/start/marine/medic/delta, -/obj/effect/landmark/late_join/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"uYM" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"uZm" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"uZo" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/living/port_emb) -"uZF" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"uZH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"uZV" = ( -/obj/structure/reagent_dispensers/fueltank/gas/methane{ - anchored = 1 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"uZZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Basketball Court" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/basketball) -"vaq" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vaQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Medical Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"vaS" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/mp_bunks) -"vaV" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"vaZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"vbf" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vbo" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigcells"; - name = "\improper Brig Prisoner Yard" - }, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"vbB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"vbI" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"vbM" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northwest, -/area/almayer/squads/bravo) -"vbR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/green/northeast, -/area/almayer/squads/req) -"vbS" = ( -/obj/structure/closet/secure_closet/personal/patient{ - name = "morgue closet" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/morgue) -"vbU" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/midship_hallway) -"vbV" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"vbZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"vcm" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/perma) -"vcq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_lobby) -"vcu" = ( -/obj/effect/landmark/start/engineering, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"vcE" = ( -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"vcG" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"vcI" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vdl" = ( -/obj/structure/window/reinforced/ultra{ - pixel_y = -12 - }, -/obj/structure/bed/chair/bolted, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/plating_striped, -/area/almayer/shipboard/brig/execution) -"vdL" = ( -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"vdM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"vdO" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/machinery/cryo_cell{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"vdR" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) -"vej" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"ven" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer/green, -/area/almayer/living/grunt_rnr) -"veq" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"veu" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"vex" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vfa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/emerald/southeast, -/area/almayer/squads/charlie) -"vfo" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - dir = 2; - name = "\improper Evacuation Airlock PL-2"; - req_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/powered) -"vfx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/squads/bravo) -"vfP" = ( -/turf/open/floor/almayer/research/containment/corner/north, -/area/almayer/medical/containment/cell) -"vfS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vgi" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/general_equipment) -"vgn" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 2 - }, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vgv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"vgw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/engineering/lower) -"vgx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/research, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/hydroponics) -"vgB" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/autoinjectors{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/device/mass_spectrometer{ - pixel_x = 8 - }, -/obj/item/storage/box/pillbottles{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/reagent_container/glass/beaker/cryoxadone{ - pixel_x = 8; - pixel_y = 10 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"vgD" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/command/lifeboat) -"vgO" = ( -/turf/closed/wall/almayer/research/containment/wall/east, -/area/almayer/medical/containment/cell) -"vhb" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/maint/upper/u_a_p) -"vhe" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"vhw" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"vhA" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"vhR" = ( -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos."; - icon_state = "pottedplant_22"; - name = "synthetic potted plant"; - pixel_y = 8 - }, -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/squads/charlie) -"vhX" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/medical/lower_medical_medbay) -"vif" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/chapel) -"vih" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"vil" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"vio" = ( -/obj/effect/landmark/start/marine/delta, -/obj/effect/landmark/late_join/delta, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"vit" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/operating_room_four) -"viu" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"viv" = ( -/obj/structure/bed/sofa/south/white/right{ - pixel_y = 16 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/maint/upper/u_m_p) -"viB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/aicore, -/area/almayer/command/airoom) -"viJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/gym) -"viN" = ( -/turf/open/floor/almayer/mono, -/area/almayer/command/securestorage) -"viO" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/living/briefing) -"viS" = ( -/obj/effect/landmark/start/marine/engineer/bravo, -/obj/effect/landmark/late_join/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"vjb" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"vjg" = ( -/obj/structure/prop/almayer/missile_tube{ - icon_state = "missiletubesouth" - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/port_missiles) -"vjv" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"vjB" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"vjC" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/machinery/disposal, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; - name = "dip cup"; - pixel_x = -4; - pixel_y = 8 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"vjG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/hallways/lower/port_umbilical) -"vjK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"vjS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/lower/constr) -"vjT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/hallways/lower/port_umbilical) -"vjW" = ( -/obj/structure/reagent_dispensers/watertank{ - anchored = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"vka" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"vkb" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/door_control{ - id = "officers_mess"; - name = "Privacy Shutters"; - pixel_y = -19 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"vkp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/medical_science) -"vky" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/p_bow) -"vkI" = ( -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"vkM" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - dir = 1; - name = "\improper Brig Equipment" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/general_equipment) -"vkO" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass/large_stack, -/obj/item/device/lightreplacer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/plate, -/area/almayer/maint/lower/s_bow) -"vkR" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"vlk" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"vln" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"vly" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"vlM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"vlO" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/yellow{ - pixel_y = 13 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/obj/item/toy/plush/barricade, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"vlX" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha_bravo_shared) -"vme" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"vml" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"vmp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"vmq" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"vmE" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/engineering/lower) -"vmJ" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"vmN" = ( -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"vmP" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vmW" = ( -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/port_missiles) -"vno" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"vnD" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"vnM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"vnY" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"voj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/mono, -/area/almayer/hallways/upper/fore_hallway) -"vop" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silvercorner/west, -/area/almayer/hallways/lower/repair_bay) -"vor" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/broken_arcade, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"vou" = ( -/obj/structure/surface/rack{ - desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards." - }, -/obj/structure/machinery/light/small{ - dir = 4; - icon_state = "bulb-burned"; - status = 3 - }, -/obj/effect/decal/cleanable/blood, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" - }, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" - }, -/obj/item/prop{ - desc = "A blood bag with a hole in it. The rats must have gotten to it first."; - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag" - }, -/obj/item/prop{ - desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - layer = 2.78; - name = "circuit board"; - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/prop{ - desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - layer = 2.79; - name = "circuit board"; - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/lower_medical_medbay) -"voV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_n"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment) -"vpe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/workshop/hangar) -"vpf" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"vpn" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"vpv" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/tinted{ - dir = 2 - }, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/port) -"vpH" = ( -/obj/structure/surface/table/reinforced/almayer_B{ - explo_proof = 1; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 8; - layer = 3.3 - }, -/obj/item/desk_bell/ares{ - anchored = 1; - pixel_x = -5; - pixel_y = 14 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"vpI" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"vpT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"vpV" = ( -/turf/open/floor/almayer/emerald/southwest, -/area/almayer/command/cic) -"vpW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vqc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Holding Cell" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"vqz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/lower/port_fore_hallway) -"vqC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"vqD" = ( -/obj/item/trash/candle, -/obj/item/tool/match/paper, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"vqI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera_film{ - layer = 3.03; - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/stack/sheet/cardboard/small_stack{ - layer = 3.02; - pixel_x = -5; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"vqK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/upper_engineering/starboard) -"vqL" = ( -/obj/item/clothing/under/shorts/black, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"vqW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/medical_science) -"vqY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"vqZ" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/sign/safety/biolab{ - pixel_x = -9; - pixel_y = 32 - }, -/obj/structure/sign/safety/biohazard{ - pixel_x = 25; - pixel_y = 32 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80; - pixel_y = 6 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/medical_science) -"vra" = ( -/turf/closed/wall/almayer, -/area/almayer/squads/charlie_delta_shared) -"vrx" = ( -/obj/structure/machinery/status_display{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"vrI" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -18 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"vrJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Liasion's Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/corporateliaison) -"vrM" = ( -/obj/structure/closet/secure_closet{ - name = "secure evidence locker"; - req_access_txt = "3" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/evidence_storage) -"vrR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Deck Waste Tank Control" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"vrW" = ( -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/briefing) -"vrZ" = ( -/obj/structure/largecrate/machine/bodyscanner, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"vsd" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_m_s) -"vse" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"vsf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vsh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"vsi" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"vsz" = ( -/obj/structure/machinery/camera/autoname/almayer/brig{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"vsF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vta" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cichallway) -"vti" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"vtm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/medical_science) -"vtr" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"vtx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"vtG" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"vtJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"vub" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/sea_office) -"vug" = ( -/obj/effect/landmark/start/marine/engineer/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha) -"vuA" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/living/briefing) -"vuD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"vuF" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - dir = 1; - name = "\improper Kitchen Hydroponics"; - req_one_access_txt = "30;19" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"vuG" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"vuL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/blue, -/area/almayer/squads/delta) -"vuV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"vuZ" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/weapon_room) -"vvp" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/sign/safety/intercom{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"vvw" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/paper, -/obj/item/tool/pen{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"vvy" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 32 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"vvH" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"vvX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"vvY" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/surface/rack{ - density = 0; - pixel_x = 26 - }, -/obj/structure/bedsheetbin{ - pixel_x = 26; - pixel_y = 5 - }, -/obj/item/tool/soap/syndie, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"vwj" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"vwC" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"vwF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"vwI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"vwT" = ( -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/midship_hallway) -"vwU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"vwV" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/command/cic) -"vwY" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"vxb" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"vxu" = ( -/obj/structure/machinery/meter, -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"vxG" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/shipboard/brig/chief_mp_office) -"vxK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"vxM" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/cryo) -"vxX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/wrench{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/storage/bible{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/storage/bible{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"vxY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vyg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vyh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_s) -"vyi" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/processing) -"vyp" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"vyr" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"vyu" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_lobby) -"vyB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"vyE" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_arrow/east, -/area/almayer/command/airoom) -"vyH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/general_equipment) -"vyI" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) -"vzi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"vzj" = ( -/obj/structure/machinery/door/airlock/almayer/security/reinforced{ - name = "\improper Chief MP's Bedroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/chief_mp_office) -"vzk" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"vzp" = ( -/turf/open/floor/almayer/research/containment/entrance, -/area/almayer/medical/containment/cell/cl) -"vzy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/redcorner/west, -/area/almayer/shipboard/brig/starboard_hallway) -"vzz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Hydroponics Garden" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/cells) -"vzB" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"vzK" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/ce_room) -"vzP" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/cups, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/spoon, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/item/tool/kitchen/utensil/fork, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "kitchen"; - name = "\improper Kitchen Shutters" - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"vzX" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 - }, -/obj/structure/platform_decoration/metal/almayer/north, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vAg" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"vAq" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/hallways/hangar) -"vAx" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"vAz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"vAE" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"vAG" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) -"vAH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/port) -"vAI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"vAQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/reagent_analyzer{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"vBp" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/obj/structure/window/reinforced/ultra{ - dir = 1 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/living/briefing) -"vBC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"vBJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/pen, -/obj/item/device/whistle, -/obj/item/device/megaphone, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/chief_mp_office) -"vBU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/squads/req) -"vCg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/suit_storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vCk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/hydroponics) -"vCt" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"vCv" = ( -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/midship_hallway) -"vCx" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer/silver, -/area/almayer/shipboard/brig/cic_hallway) -"vCy" = ( -/obj/structure/machinery/camera/autoname/almayer/brig{ - dir = 4 - }, -/turf/open/floor/almayer/green/west, -/area/almayer/shipboard/brig/cells) -"vCE" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"vCH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/structure/machinery/camera/autoname/almayer/containment/ares{ - autoname = 0; - c_tag = "AI - Primary Processors"; - dir = 4 - }, -/turf/open/floor/almayer/aicore/no_build/ai_floor2, -/area/almayer/command/airoom) -"vCO" = ( -/obj/effect/landmark/start/bridge, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/bridgebunks) -"vDa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/hydroponics) -"vDd" = ( -/obj/structure/window/framed/almayer/hull/hijack_bustable, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Firing_Range_1"; - name = "range shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/plating, -/area/almayer/living/cryo_cells) -"vDh" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"vDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"vDz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vDN" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"vEf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"vEj" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/effect/landmark/start/synthetic, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) -"vEr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/medical_science) -"vEv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vEx" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 2; - name = "Morgue Waiting Room"; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"vEG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"vEH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer, -/area/almayer/living/briefing) -"vEI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"vER" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/aft_hallway) -"vEV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/starboard) -"vFn" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"vFp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"vFv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"vFw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"vFH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"vFI" = ( -/obj/structure/largecrate/random/secure, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"vGn" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/interrogation) -"vGA" = ( -/obj/structure/bed/sofa/south/grey/right, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"vGG" = ( -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"vGI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/numbertwobunks) -"vGQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"vHa" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/ares_console{ - pixel_x = 9 - }, -/obj/structure/machinery/computer/view_objectives{ - pixel_x = -9 - }, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"vHh" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/item/tool/warning_cone{ - layer = 3.6; - pixel_x = -16; - pixel_y = -9 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"vHn" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_s) -"vHp" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/prop/magazine/boots/n160{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/structure/transmitter/rotary{ - name = "Flight Deck Telephone"; - phone_category = "Almayer"; - phone_id = "Flight Deck"; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"vHq" = ( -/obj/item/device/assembly/mousetrap/armed, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/port_emb) -"vHt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "CIC Lockdown"; - name = "CIC Lockdown"; - pixel_x = -7; - pixel_y = 9; - req_access_txt = "1" - }, -/obj/structure/machinery/door_control{ - id = "Hangar Lockdown"; - name = "Hangar Lockdown"; - pixel_x = -7; - pixel_y = 2; - req_access_txt = "1" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4; - icon_state = "exposed01-supply" - }, -/obj/structure/machinery/door_control{ - id = "bot_armory"; - name = "Armory Lockdown"; - pixel_x = -7; - pixel_y = -5; - req_one_access_txt = "1;4" - }, -/obj/structure/transmitter/rotary/no_dnd{ - name = "Combat Information Center Telephone"; - phone_category = "Command"; - phone_id = "Combat Information Center"; - pixel_x = 5; - pixel_y = 4 - }, -/obj/structure/machinery/door/window/westright{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"vHO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"vHP" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"vHW" = ( -/obj/structure/surface/rack, -/obj/item/tool/extinguisher, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"vIf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/upper_medical) -"vIg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_a_s) -"vIo" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_f_p) -"vIu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cichallway) -"vIZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"vJc" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/warden_office) -"vJg" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/securestorage) -"vJo" = ( -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/red/southeast, -/area/almayer/shipboard/navigation) -"vJR" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) -"vJV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - pixel_y = -29 - }, -/turf/open/floor/almayer/orange, -/area/almayer/squads/bravo) -"vJZ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"vKb" = ( -/obj/structure/machinery/smartfridge/chemistry{ - density = 0; - pixel_y = 16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_corner, -/area/almayer/medical/containment) -"vKe" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vKr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigcells"; - dir = 1; - name = "\improper Brig Prison Yard And Offices" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/processing) -"vKB" = ( -/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/armory) -"vKI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"vLg" = ( -/obj/item/trash/uscm_mre, -/obj/structure/bed/chair/comfy/charlie, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vLj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Medical Bay"; - req_one_access = null - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"vLp" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/hallways/lower/repair_bay) -"vLz" = ( -/obj/structure/machinery/door_control{ - id = "ARES Mainframe Right"; - name = "ARES Mainframe Lockdown"; - pixel_x = -24; - pixel_y = -24; - req_one_access_txt = "200;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"vLA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"vLB" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform/metal/almayer/east, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"vMb" = ( -/obj/item/stool{ - pixel_x = -15; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"vMo" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_four) -"vMr" = ( -/obj/effect/landmark/start/otech, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"vMt" = ( -/turf/open/floor/almayer/aicore/no_build/ai_silver/west, -/area/almayer/command/airoom) -"vMA" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"vME" = ( -/turf/open/floor/almayer/orange/northwest, -/area/almayer/engineering/upper_engineering/port) -"vMG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/iv_drip, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"vMI" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"vMJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "\improper Brig Breakroom" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/mp_bunks) -"vMM" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"vMU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/redcorner/north, -/area/almayer/hallways/lower/port_fore_hallway) -"vNo" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_p) -"vNp" = ( -/obj/structure/sign/safety/three{ - pixel_x = -17 - }, -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 3"; - name = "Cell 3" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"vND" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie) -"vNT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/starboard_hallway) -"vNW" = ( -/turf/open/floor/almayer/uscm/directional/northwest, -/area/almayer/command/cic) -"vOh" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"vOu" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/energy/taser, -/obj/item/weapon/gun/energy/taser{ - pixel_y = 8 - }, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/mp_bunks) -"vOw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"vOy" = ( -/turf/closed/wall/almayer/white/reinforced, -/area/almayer/medical/medical_science) -"vOG" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/obj/structure/largecrate/supply/ammo/pistol/half{ - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"vOM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"vON" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"vOP" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/upper_medical) -"vOV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"vOY" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/mess) -"vOZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"vPf" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 2"; - name = "\improper cell shutter" - }, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/perma) -"vPm" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south1) -"vPv" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"vPw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/ladder{ - height = 1; - id = "cicladder4" - }, -/turf/open/floor/plating/almayer, -/area/almayer/living/briefing) -"vPK" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_y = -26 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"vPM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vPR" = ( -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/structure/closet/secure_closet/guncabinet/red, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/engineering/lower/workshop/hangar) -"vPT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"vPW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) -"vQe" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/obj/structure/catwalk{ - health = null - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/stair_clone/upper) -"vQf" = ( -/turf/open/floor/almayer/silvercorner/north, -/area/almayer/command/securestorage) -"vQq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"vQN" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 16 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/upper_medical) -"vQR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"vRa" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/light, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/rewire{ - pixel_x = -17; - pixel_y = -25 - }, -/obj/structure/sign/prop3{ - pixel_x = -32 - }, -/obj/structure/machinery/faxmachine/uscm{ - department = "SEA" - }, -/turf/open/floor/strata/faux_metal, -/area/almayer/shipboard/sea_office) -"vRb" = ( -/turf/open/floor/almayer/uscm/directional/southwest, -/area/almayer/command/cic) -"vRu" = ( -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/storage/box/matches, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/upper_engineering/starboard) -"vRA" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"vRR" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"vSl" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"vSn" = ( -/obj/structure/barricade/handrail/medical{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/lower_medical_lobby) -"vSp" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"vSr" = ( -/obj/structure/largecrate/random/case/double, -/obj/item/tool/wet_sign{ - pixel_y = 18 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"vSE" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/upper_engineering/port) -"vSG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/chemistry) -"vSK" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/briefing) -"vSN" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"vSW" = ( -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/delta) -"vTu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 - }, -/turf/open/floor/almayer/silver/northeast, -/area/almayer/command/cic) -"vTv" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering) -"vTE" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"vTM" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"vTS" = ( -/obj/structure/machinery/light{ - pixel_x = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"vTT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"vTX" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vUb" = ( -/obj/effect/landmark/start/marine/alpha, -/obj/effect/landmark/late_join/alpha, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"vUe" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"vUh" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"vUn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/port) -"vUI" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/warden_office) -"vUJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"vUO" = ( -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"vUP" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/cic_hallway) -"vVb" = ( -/obj/structure/machinery/cm_vending/gear/tl{ - density = 0; - pixel_x = -32; - vend_x_offset = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"vVd" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/briefing) -"vVk" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer/aicore/hull, -/area/almayer/command/airoom) -"vVs" = ( -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"vVu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"vVw" = ( -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"vVy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vVI" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"vVW" = ( -/obj/effect/decal/medical_decals{ - icon_state = "triagedecaltopright" - }, -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_lobby) -"vVZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"vWc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/normandy{ - layer = 3.5 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"vWs" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"vWt" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker/large, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_container/dropper, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/reagent_container/glass/beaker/bluespace{ - pixel_y = 12 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"vWA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/pen{ - pixel_x = 9; - pixel_y = -5 - }, -/obj/item/prop/magazine/book/theartofwar, -/turf/open/floor/almayer, -/area/almayer/living/bridgebunks) -"vWB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt/bcigbutt, -/obj/item/trash/cigbutt{ - pixel_x = -1; - pixel_y = 17 - }, -/obj/item/trash/cigbutt{ - icon_state = "ucigbutt"; - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/tool/lighter/random{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/structure/sign/prop3{ - pixel_x = 28 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"vWG" = ( -/obj/structure/pipes/vents/pump, -/obj/item/tool/soap, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/cells) -"vWJ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"vXd" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - density = 0; - id = "engidorm"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/upper_engineering/port) -"vXf" = ( -/obj/structure/reagent_dispensers/pacidtank{ - anchored = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"vXh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer/aicore/glowing/no_build, -/area/almayer/command/airoom) -"vXo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"vXF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"vYd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"vYi" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - closeOtherId = "brigwarden"; - name = "\improper Warden's Office" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "Warden Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "courtyard_cells"; - name = "\improper Courtyard Lockdown Shutter" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/warden_office) -"vYm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"vYt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"vYz" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/beaker{ - pixel_x = 8 - }, -/obj/item/paper_bin/wy{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tool/pen{ - pixel_y = -2 - }, -/obj/item/reagent_container/dropper{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/structure/machinery/biohazard_lockdown{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"vYC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"vYM" = ( -/turf/open/floor/almayer/plate, -/area/almayer/command/cichallway) -"vZb" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 16; - pixel_y = 26 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"vZf" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8 - }, -/turf/closed/wall/almayer, -/area/almayer/engineering/lower) -"vZt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer/redcorner, -/area/almayer/squads/alpha) -"vZv" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_missiles) -"vZw" = ( -/turf/open/floor/almayer/research/containment/floor2, -/area/almayer/medical/containment/cell/cl) -"vZI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/upper/midship_hallway) -"vZJ" = ( -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/upper/fore_hallway) -"wac" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"wan" = ( -/obj/structure/surface/table/almayer, -/obj/item/facepaint/brown, -/turf/open/floor/almayer/green/west, -/area/almayer/living/offices) -"waD" = ( -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/operating_room_one) -"waJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/upper/port) -"waP" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/upper/fore_hallway) -"wbu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"wby" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/upper/u_f_s) -"wbC" = ( -/obj/structure/machinery/atm{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"wbJ" = ( -/obj/structure/machinery/door_control/airlock{ - id = "n_engi"; - name = "Port Engi Airlock"; - pixel_x = 28; - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"wbN" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wbO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 15 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/pilotbunks) -"wbP" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 125 - }, -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/operating_room_four) -"wbV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"wbX" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - pixel_y = 24 - }, -/obj/item/device/cotablet, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/cic) -"wcm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/lifeboat_pumps/south2) -"wct" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower) -"wcD" = ( -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"wcJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/s_bow) -"wcN" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"wcR" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/cell/high, -/obj/item/clothing/glasses/welding, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"wdf" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/auxiliary_officer_office) -"wdh" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/almayer/silver/southwest, -/area/almayer/shipboard/brig/cic_hallway) -"wdv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - name = "\improper Core Hatch" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/lower/engine_core) -"wdz" = ( -/obj/effect/landmark/start/marine/engineer/charlie, -/obj/effect/landmark/late_join/charlie, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/charlie) -"wdF" = ( -/turf/open/floor/almayer/no_build, -/area/almayer/shipboard/brig/processing) -"wdG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_f_p) -"wdI" = ( -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"wdJ" = ( -/obj/structure/surface/rack, -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"wdQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"wdW" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"wed" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"wee" = ( -/obj/effect/landmark/start/police, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/landmark/late_join/police, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cryo) -"wei" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/hydroponics) -"wer" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"wex" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = 8; - pixel_y = -25 - }, -/turf/open/floor/almayer/mono, -/area/almayer/living/pilotbunks) -"weC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/port_point_defense) -"weD" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "dccbunk"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/living/pilotbunks) -"weR" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/almayer/cargo, -/area/almayer/living/offices) -"wfn" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/engineering/lower/workshop/hangar) -"wfx" = ( -/obj/structure/machinery/vending/cola, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"wfE" = ( -/turf/closed/wall/almayer, -/area/almayer/living/gym) -"wfZ" = ( -/obj/structure/desertdam/decals/road_edge{ - pixel_x = -12 - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3"; - pixel_y = -12 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"wga" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/window/reinforced/ultra{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/briefing) -"wgf" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/stern_point_defense) -"wgk" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/cichallway) -"wgO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"wgR" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"whc" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"whm" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"whA" = ( -/turf/open/floor/almayer/uscm/directional, -/area/almayer/living/briefing) -"whB" = ( -/obj/structure/closet/firecloset, -/obj/structure/sign/safety/reception{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/bridge{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/cichallway) -"whO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_s) -"whQ" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/storage/donut_box{ - pixel_y = 8 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/warden_office) -"wid" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/p_bow) -"wiu" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, -/area/almayer/command/airoom) -"wiz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"wiG" = ( -/obj/structure/sign/poster{ - pixel_x = -30; - pixel_y = 4 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/wood/ship, -/area/almayer/engineering/ce_room) -"wiI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/juicer{ - pixel_y = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"wiN" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/bridge{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/east{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/silver/southeast, -/area/almayer/shipboard/brig/cic_hallway) -"wiO" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"wiQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"wiW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"wjq" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"wjv" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/upper_engineering) -"wjz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"wjC" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"wjL" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/repair_bay) -"wjQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"wjY" = ( -/obj/structure/closet/secure_closet/warrant_officer, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"wka" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ - pixel_x = 4 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"wkc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - access_modified = 1; - dir = 8; - req_access_txt = "8" - }, -/obj/structure/machinery/door/window/eastleft{ - req_access_txt = "8" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lockerroom) -"wks" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"wky" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"wkA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wkH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/whistle{ - pixel_y = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"wkM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "ARES StairsLower"; - name = "\improper ARES Core Shutters"; - plane = -7 - }, -/obj/effect/step_trigger/ares_alert/public{ - alert_id = "AresStairs"; - alert_message = "Caution: Movement detected in ARES Core."; - cooldown_duration = 1200 - }, -/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, -/turf/open/floor/almayer/no_build/test_floor4, -/area/almayer/command/airoom) -"wkX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"wlb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wlg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control{ - id = "Interrogation Shutters"; - name = "\improper Shutters"; - pixel_x = -6; - pixel_y = -6; - req_access_txt = "3" - }, -/obj/item/device/taperecorder{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/interrogation) -"wlh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"wlr" = ( -/turf/open/floor/almayer/silver/northeast, -/area/almayer/hallways/upper/midship_hallway) -"wlD" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_umbilical) -"wlE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/cic) -"wlK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"wmg" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/starboard_missiles) -"wmo" = ( -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/northeast, -/area/almayer/hallways/upper/fore_hallway) -"wmz" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"wmK" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/turf/open/floor/almayer/silver/north, -/area/almayer/command/computerlab) -"wmP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"wmQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - dir = 2; - id_tag = "tc03"; - name = "\improper Treatment Center" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"wmT" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_x = 30 - }, -/obj/structure/machinery/cryopod/right, -/turf/open/floor/almayer/cargo, -/area/almayer/living/bridgebunks) -"wnb" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/smg/m39{ - pixel_y = 6 - }, -/obj/item/weapon/gun/smg/m39{ - pixel_y = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"wnh" = ( -/obj/structure/window/framed/almayer/aicore/hull, -/turf/open/floor/plating, -/area/almayer/command/airoom) -"wnw" = ( -/obj/structure/machinery/flasher{ - id = "Perma 2"; - pixel_y = 24 - }, -/obj/structure/machinery/camera/autoname/almayer/brig, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"wnL" = ( -/obj/item/stack/tile/carpet{ - amount = 12 - }, -/obj/structure/surface/rack, -/obj/item/tool/crowbar/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"wnY" = ( -/obj/item/tool/crowbar/red, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/squads/alpha_bravo_shared) -"woh" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 4 - }, -/area/almayer/medical/containment/cell) -"wos" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"woy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"woB" = ( -/obj/structure/platform_decoration/metal/almayer/east, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"woU" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_p) -"wpg" = ( -/obj/structure/machinery/blackbox_recorder, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"wpt" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - closeOtherId = "ciclobby_s"; - name = "\improper Combat Information Center" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/command/cic) -"wpu" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"wpI" = ( -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"wpS" = ( -/obj/structure/pipes/standard/simple/visible, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower) -"wqc" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"wqh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wqr" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 7; - pixel_y = 29 - }, -/obj/structure/filingcabinet, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"wqO" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"wra" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"wrr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control/railings{ - pixel_y = 24 - }, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/hallways/lower/vehiclehangar) -"wru" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"wrC" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"wrI" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_p) -"wrN" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"wrT" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/item/device/radio/marine, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"wrX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/upper/port) -"wse" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"wsh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/perma) -"wsl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"wsq" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"wsw" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"wsz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"wsD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"wsR" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"wsS" = ( -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wtk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wtn" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/item/storage/firstaid{ - pixel_x = -13; - pixel_y = 13 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_s) -"wty" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/squads/delta) -"wtD" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/p_bow) -"wtM" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"wtY" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/white{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/paper, -/obj/item/restraint/handcuffs, -/obj/item/clothing/mask/cigarette/cigar/classic, -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"wub" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"wud" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/engineering/lower/workshop) -"wuh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"wui" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/upper/u_m_p) -"wuk" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wup" = ( -/obj/structure/supply_drop/echo, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"wuq" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"wuB" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/lower/workshop) -"wuS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_a_s) -"wuT" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/starboard) -"wuU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie) -"wvb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/almayer/plate, -/area/almayer/living/captain_mess) -"wvj" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south1) -"wvo" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"wvE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer_network{ - dir = 4; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/shipboard/brig/chief_mp_office) -"wvI" = ( -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/obj/structure/surface/table/reinforced/black, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/brig/perma) -"wvU" = ( -/obj/structure/machinery/recharge_station, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/synthcloset) -"wvX" = ( -/obj/structure/sign/safety/analysis_lab{ - pixel_y = 26 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/upper/midship_hallway) -"wwr" = ( -/obj/structure/machinery/cryopod{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"wwv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"wwE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"wwJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/upper_engineering) -"wwW" = ( -/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/research/containment/floor2/west, -/area/almayer/medical/containment/cell/cl) -"wxc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/iv_drip, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"wxj" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/starboard) -"wxp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wxq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/medical/lower_medical_medbay) -"wxu" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wxy" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_stern) -"wxD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"wxF" = ( -/obj/structure/closet/secure_closet/cmdcabinet{ - desc = "A bulletproof cabinet containing communications equipment."; - name = "communications cabinet"; - pixel_y = 24; - req_access = null; - req_one_access_txt = "3" - }, -/obj/item/device/radio/listening_bug/radio_linked/mp{ - pixel_y = 8 - }, -/obj/item/device/radio/listening_bug/radio_linked/mp, -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/brig/warden_office) -"wxU" = ( -/obj/item/ashtray/bronze{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 7; - pixel_y = 16 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/beach_ball/holoball{ - pixel_x = -5; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"wyt" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave{ - pixel_x = -2; - pixel_y = 7 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"wyz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"wyG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/hull/lower/l_m_s) -"wyQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/aicore_lockdown, -/turf/open/floor/almayer/no_build/plating, -/area/almayer/command/airoom) -"wzy" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"wzJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"wzZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Wheelchair Storage"; - req_access = null; - req_one_access = null - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/lower_medical_medbay) -"wAE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"wAK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"wBr" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/north, -/area/almayer/squads/alpha) -"wBw" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wBI" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/starboard) -"wCe" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"wCi" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/medical/lockerroom) -"wCk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/wooden_tv/ot{ - pixel_y = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"wCn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/blue, -/area/almayer/hallways/upper/fore_hallway) -"wCs" = ( -/obj/structure/machinery/vending/security, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wCI" = ( -/turf/open/floor/almayer/redcorner/east, -/area/almayer/living/briefing) -"wDg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/southwest, -/area/almayer/hallways/upper/starboard) -"wDq" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"wDr" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stairs) -"wDs" = ( -/obj/structure/machinery/seed_extractor, -/obj/structure/sign/safety/terminal{ - pixel_x = -6; - pixel_y = -26 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 7; - pixel_y = -26 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 20; - pixel_y = -26 - }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"wDy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/computerlab) -"wDC" = ( -/obj/structure/machinery/door/window/brigdoor/southright{ - id = "Cell 5"; - name = "Cell 5" - }, -/obj/structure/sign/safety/five{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"wDG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"wDH" = ( -/obj/structure/surface/table/almayer, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/item/device/megaphone, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/upper_medical) -"wDJ" = ( -/turf/open/floor/almayer/emerald/north, -/area/almayer/squads/charlie_delta_shared) -"wDK" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/bravo) -"wDM" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/engineering/upper_engineering) -"wDP" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"wEd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/alpha) -"wEg" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "agentshuttle"; - explo_proof = 1; - unacidable = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/almayer/powered/agent) -"wEw" = ( -/obj/effect/landmark/start/pilot/dropship_pilot, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/pilotbunks) -"wEF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/squads/req) -"wEI" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/tool/pen, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/clipboard{ - pixel_x = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"wEK" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wET" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"wFb" = ( -/turf/open/floor/almayer/sterile_green_corner/east, -/area/almayer/medical/lower_medical_medbay) -"wFi" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"wFj" = ( -/obj/structure/platform_decoration/metal/almayer/north, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"wFn" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/clothing/suit/storage/marine/light/vest, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/command/cic) -"wFs" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"wFz" = ( -/obj/item/prop{ - desc = "Predecessor to the M56 the M38 was known for its extreme reliability in the field. This particular M38D is fondly remembered for its stalwart defence of the hangar bay during the Arcturian commando raid of the USS Almayer on Io."; - icon = 'icons/turf/whiskeyoutpost.dmi'; - icon_state = "M56D_gun_e"; - layer = 3.1; - name = "\improper M38D heavy machine gun 'Bess'"; - pixel_x = -3; - pixel_y = 10 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"wFN" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"wFQ" = ( -/obj/structure/machinery/cm_vending/clothing/maintenance_technician, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"wFR" = ( -/turf/open/floor/almayer, -/area/almayer/living/gym) -"wFX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wGa" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"wGb" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"wGd" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"wGe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"wGE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/marine/leader/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"wGX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/auxiliary_officer_office) -"wHj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/prop/ice_colony/tiger_rug{ - desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; - icon_state = "HotlineAlt"; - layer = 2.9; - name = "Richard the tiger" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/emerald/northwest, -/area/almayer/living/port_emb) -"wHn" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"wHo" = ( -/turf/open/floor/almayer/emerald, -/area/almayer/living/briefing) -"wHp" = ( -/obj/structure/bed/sofa/vert/grey, -/obj/structure/bed/sofa/vert/grey{ - pixel_y = 11 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"wHr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"wIr" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = list(); - req_access_txt = "26" - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"wIu" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"wIC" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/chief_mp_office) -"wIG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/surface/table/almayer, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_x = 4 - }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -4 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"wIQ" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/shipboard/brig/cic_hallway) -"wIX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink" - }, -/turf/open/floor/almayer/green/east, -/area/almayer/hallways/lower/port_midship_hallway) -"wJb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/lower_medical_medbay) -"wJh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/shipboard/brig/cryo) -"wJo" = ( -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/upper_medical) -"wJC" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"wJD" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/emerald/east, -/area/almayer/squads/charlie) -"wJH" = ( -/turf/closed/wall/almayer/research/containment/wall/east, -/area/almayer/medical/containment/cell/cl) -"wKb" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"wKc" = ( -/obj/effect/decal/cleanable/vomit, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/port) -"wKm" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_aft_hallway) -"wKF" = ( -/obj/structure/machinery/power/apc/almayer/north{ - cell_type = /obj/item/cell/hyper - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"wKJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"wKL" = ( -/obj/structure/machinery/door/airlock/almayer/research/reinforced{ - closeOtherId = "containment_s"; - dir = 8; - name = "\improper Containment Airlock" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"wKN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"wKP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/medical/containment) -"wKU" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north2) -"wLi" = ( -/obj/structure/machinery/door_control/airlock{ - id = "s_engi"; - name = "Starboard Engi Airlock"; - pixel_x = 28; - pixel_y = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/notunnel) -"wLm" = ( -/turf/open/floor/almayer/plating_striped/east, -/area/almayer/living/cryo_cells) -"wLy" = ( -/obj/structure/pipes/vents/pump/no_boom{ - name = "Secure Reinforced Air Vent"; - welded = 1 - }, -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"wLC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/bridge{ - pixel_y = 32 - }, -/obj/structure/sign/safety/reception{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/fore_hallway) -"wLF" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - closeOtherId = "brigmed"; - name = "\improper Brig Medbay"; - req_access = null; - req_one_access = null; - req_one_access_txt = "20;3" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/medical) -"wLG" = ( -/obj/item/bedsheet/blue{ - layer = 3.2 - }, -/obj/item/bedsheet/blue{ - pixel_y = 13 - }, -/obj/item/clothing/head/ushanka{ - layer = 3.3 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/port_emb) -"wLK" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_y = 9 - }, -/obj/item/tool/kitchen/tray{ - pixel_y = 12 - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"wLN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ - dir = 8 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/containment) -"wLS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/starboard_hallway) -"wMl" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/two{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wMv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/auxiliary_officer_office) -"wMB" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/test_floor5, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wMF" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_bow) -"wMG" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/alpha) -"wMI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"wMO" = ( -/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/medical_science) -"wNl" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/USCMtray{ - layer = 3.2; - pixel_x = 4; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -10; - pixel_y = 1 - }, -/obj/item/reagent_container/food/snacks/grown/orange{ - layer = 3.3; - pixel_x = 1; - pixel_y = 13 - }, -/obj/item/prop/magazine/book/starshiptroopers{ - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/living/port_emb) -"wNt" = ( -/turf/open/floor/almayer/redcorner/north, -/area/almayer/shipboard/brig/processing) -"wNz" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wNC" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/upper/midship_hallway) -"wNG" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/lower/starboard_fore_hallway) -"wNS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"wOt" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/upper_engineering/starboard) -"wOK" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"wPf" = ( -/obj/structure/sign/safety/reception{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/south1) -"wPi" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/hallways/lower/port_midship_hallway) -"wPw" = ( -/obj/structure/platform/metal/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"wPz" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"wPC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/almayer/squads/charlie) -"wPF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ - dir = 4 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/command/cichallway) -"wQb" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform/metal/almayer/west, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"wQu" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/almayer/no_build/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"wQA" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 5 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/engineering/lower) -"wQD" = ( -/turf/open/floor/almayer/orange/southeast, -/area/almayer/engineering/lower/engine_core) -"wQI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_f_s) -"wRf" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/lower/port_umbilical) -"wRk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wRt" = ( -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer/red/north, -/area/almayer/lifeboat_pumps/south2) -"wRN" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer/green, -/area/almayer/shipboard/brig/cells) -"wRO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) -"wRP" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/command/lifeboat) -"wRT" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"wSm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"wSn" = ( -/turf/open/floor/almayer/dark_sterile, -/area/almayer/engineering/laundry) -"wSu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"wSB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"wSQ" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/hallways/lower/repair_bay) -"wSR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"wSV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/engineering/lower/engine_core) -"wSX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/living/grunt_rnr) -"wTd" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/silver/northwest, -/area/almayer/command/securestorage) -"wTg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"wTm" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/living/briefing) -"wTn" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wTu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/turf/open/floor/almayer/orange/southwest, -/area/almayer/maint/upper/mess) -"wTw" = ( -/obj/structure/machinery/cm_vending/sorted/attachments/squad{ - req_access = null; - req_one_access = null; - req_one_access_txt = "17;18;21"; - vend_y_offset = 0 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"wTB" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"wTM" = ( -/turf/closed/wall/almayer/research/containment/wall/south, -/area/almayer/medical/containment/cell) -"wTN" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"wUd" = ( -/turf/open/floor/almayer/mono, -/area/almayer/medical/upper_medical) -"wUJ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"wUK" = ( -/turf/open/floor/almayer/orangecorner/west, -/area/almayer/engineering/lower/workshop/hangar) -"wUP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"wUR" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/almayer/blue/west, -/area/almayer/living/pilotbunks) -"wUX" = ( -/obj/structure/surface/rack, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = -1; - pixel_y = 7 - }, -/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ - pixel_x = 1; - pixel_y = -5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"wUZ" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/almayer/red/west, -/area/almayer/lifeboat_pumps/north2) -"wVe" = ( -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresDown"; - vector_x = 96; - vector_y = -65 - }, -/obj/structure/platform/metal/almayer/east, -/obj/structure/stairs{ - dir = 1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"wVh" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/warden_office) -"wVm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"wVt" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"wVy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/ammunition{ - pixel_y = -32 - }, -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/squads/charlie_delta_shared) -"wVA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"wVB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/almayer/bluefull, -/area/almayer/living/bridgebunks) -"wVN" = ( -/obj/item/roller, -/obj/structure/surface/rack, -/obj/item/roller, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"wVW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/command/cic) -"wWg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/living/chapel) -"wWl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/general_air_control/large_tank_control{ - name = "Lower Mixed Air Control" - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"wWm" = ( -/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, -/area/almayer/medical/containment/cell) -"wWq" = ( -/obj/structure/surface/table/reinforced/black, -/obj/item/clothing/suit/space/compression/uscm, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"wWt" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wWz" = ( -/turf/closed/wall/almayer/research/containment/wall/north, -/area/almayer/medical/containment/cell) -"wWC" = ( -/turf/open/floor/almayer/blue/southwest, -/area/almayer/living/pilotbunks) -"wWP" = ( -/obj/structure/prop/cash_register/broken, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer/test_floor5, -/area/almayer/squads/req) -"wWR" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"wWX" = ( -/obj/effect/landmark/start/marine/engineer/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"wXh" = ( -/obj/structure/machinery/floodlight/landing{ - name = "bolted floodlight" - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"wXz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/starboard_hallway) -"wXH" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"wXI" = ( -/turf/open/floor/almayer/greencorner/north, -/area/almayer/living/grunt_rnr) -"wXJ" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"wXT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Engineering Storage" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/hallways/hangar) -"wYa" = ( -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north2) -"wYd" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"wYr" = ( -/obj/structure/machinery/gel_refiller, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"wYA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"wYG" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/lower/l_m_s) -"wYK" = ( -/obj/structure/barricade/handrail/medical, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_lobby) -"wYS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/lower_medical_medbay) -"wYY" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "CE Office Shutters"; - name = "\improper Privacy Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/engineering/ce_room) -"wZv" = ( -/obj/structure/prop/invuln{ - desc = "An inflated membrane. This one is puncture proof. Wow!"; - icon = 'icons/obj/items/inflatable.dmi'; - icon_state = "wall"; - name = "umbilical wall" - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/almayer_hull/outerhull_dir/east, -/area/almayer/engineering/upper_engineering/port) -"wZE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_four) -"wZL" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/perma) -"wZX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/command/lifeboat) -"xac" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/hallways/upper/midship_hallway) -"xad" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/port_point_defense) -"xas" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_bow) -"xaC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/reagent_container/food/snacks/mre_pack/meal5{ - desc = "How long has this been sitting here?"; - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"xaM" = ( -/obj/structure/surface/table/almayer, -/obj/item/newspaper{ - name = "character sheet"; - pixel_x = -6 - }, -/obj/item/newspaper{ - name = "character sheet"; - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/toy/dice/d20, -/obj/item/toy/crayon/blue{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/paper_bin/uscm{ - pixel_y = 7 - }, -/obj/item/tool/pen, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"xaN" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/knife, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = 7 - }, -/obj/item/tool/kitchen/utensil/spoon{ - pixel_x = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"xaS" = ( -/turf/open/floor/almayer/uscm/directional/northeast, -/area/almayer/command/lifeboat) -"xba" = ( -/turf/closed/wall/almayer/reinforced/temphull, -/area/almayer/living/cryo_cells) -"xbd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xbg" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xbk" = ( -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xbI" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"xcI" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"xcV" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"xdf" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"xdx" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/item/storage/firstaid/regular/empty, -/obj/structure/sign/safety/outpatient{ - pixel_x = -17; - pixel_y = -6 - }, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lower_medical_medbay) -"xdz" = ( -/obj/effect/projector{ - name = "Almayer_AresUp"; - vector_x = -96; - vector_y = 65 - }, -/obj/structure/platform/metal/almayer/west, -/obj/structure/stairs{ - dir = 1; - icon_state = "ramptop" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xdA" = ( -/obj/structure/surface/rack{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/faxmachine/uscm/command{ - density = 0; - department = "AI Core"; - pixel_y = 32 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xdJ" = ( -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/execution) -"xdP" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/uscm_mre, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp{ - layer = 3.3; - pixel_x = 15 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"xee" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"xef" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/obj/structure/machinery/keycard_auth{ - pixel_x = -8; - pixel_y = 25 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 26 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"xer" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"xeU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Laundry Room"; - req_access = list(); - req_one_access = list(19,7) - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/laundry) -"xfm" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/cafeteria_officer) -"xfq" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"xfK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/transmitter{ - name = "Kitchen Telephone"; - phone_category = "Almayer"; - phone_id = "Kitchen"; - pixel_x = -8; - pixel_y = 29 - }, -/obj/structure/machinery/vending/ingredients, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"xfO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/living/bridgebunks) -"xfT" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer/sterile_green_corner/west, -/area/almayer/medical/operating_room_one) -"xga" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/upper/aft_hallway) -"xgh" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/turf/open/floor/almayer/sterile_green, -/area/almayer/medical/lower_medical_lobby) -"xgk" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xgm" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"xgr" = ( -/obj/structure/ladder{ - height = 1; - id = "AftPortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"xgJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/obj/structure/medical_supply_link, -/turf/open/floor/almayer/sterile_green_side/north, -/area/almayer/medical/lockerroom) -"xgN" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/holidays/string_lights{ - dir = 8; - pixel_x = 29 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xgP" = ( -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/upper_medical) -"xgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xhn" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"xhx" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cells) -"xhO" = ( -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"xhQ" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"xhU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/starboard_hallway) -"xhV" = ( -/obj/structure/platform/metal/almayer, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"xhW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xhZ" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/almayer/command/cichallway) -"xik" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/item/toy/inflatable_duck, -/obj/structure/window/reinforced, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"xiH" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_s) -"xiP" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"xiU" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/tool/minihoe{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/reagent_container/glass/fertilizer/ez, -/obj/item/seeds/ambrosiavulgarisseed, -/obj/item/tool/plantspray/weeds, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"xiV" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_bow) -"xiW" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_a_p) -"xjb" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - access_modified = 1; - name = "\improper Main Kitchen"; - req_one_access_txt = "30;19" - }, -/turf/open/floor/prison/kitchen, -/area/almayer/living/grunt_rnr) -"xjt" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/computer/card{ - dir = 4; - pixel_x = 2 - }, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"xjz" = ( -/turf/open/floor/almayer/plating_striped, -/area/almayer/command/lifeboat) -"xjD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"xjF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/surface/table/almayer, -/obj/structure/sign/safety/terminal{ - pixel_x = 3; - pixel_y = 27 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 15; - pixel_y = 27 - }, -/obj/structure/machinery/computer/cameras/almayer_brig{ - desc = "Used to access the various cameras in the security brig."; - dir = 4; - name = "brig cameras console" - }, -/turf/open/floor/almayer/red/west, -/area/almayer/shipboard/brig/processing) -"xjK" = ( -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xjW" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" - }, -/turf/closed/wall/almayer, -/area/almayer/hallways/hangar) -"xka" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/shipboard/starboard_point_defense) -"xkb" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"xkc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"xkd" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/cells) -"xkB" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xkN" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/east, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xlk" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer, -/area/almayer/squads/bravo) -"xlC" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orangecorner/east, -/area/almayer/engineering/ce_room) -"xlO" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"xmg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_27"; - layer = 3.1; - pixel_x = -2; - pixel_y = 10 - }, -/turf/open/floor/almayer/silverfull, -/area/almayer/shipboard/brig/cic_hallway) -"xmn" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"xmJ" = ( -/obj/structure/closet, -/obj/structure/sign/safety/bathunisex{ - pixel_x = -16; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/port_emb) -"xmP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/orangecorner, -/area/almayer/hallways/upper/aft_hallway) -"xmT" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"xnh" = ( -/obj/structure/closet, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"xnz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/red/northeast, -/area/almayer/command/lifeboat) -"xnI" = ( -/obj/effect/landmark/start/requisition, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"xnP" = ( -/obj/structure/platform_decoration/metal/almayer, -/turf/open/floor/almayer/red, -/area/almayer/lifeboat_pumps/north1) -"xnX" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"xnZ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/hangar{ - dir = 8; - pixel_y = -12 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - dir = 8; - name = "Remote dropship navigation computer"; - pixel_y = 12; - shuttleId = "dropship_alamo" - }, -/turf/open/floor/almayer/redfull, -/area/almayer/living/offices/flight) -"xoe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/status_display{ - pixel_y = -29 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/squads/delta) -"xoj" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop) -"xos" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xoB" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_s) -"xoJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/port_point_defense) -"xoO" = ( -/turf/open/floor/almayer/orange/southwest, -/area/almayer/engineering/upper_engineering/port) -"xpc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xpi" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/commandbunks) -"xpl" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/four{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/hallways/lower/port_midship_hallway) -"xpw" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/shipboard/brig/medical) -"xpL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"xpT" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xqh" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"xqp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/machinery/disposal/delivery{ - density = 0; - desc = "A pneumatic delivery unit. Sends items to the requisitions."; - icon_state = "delivery_med"; - name = "Requisitions Delivery Unit"; - pixel_y = 28 - }, -/obj/structure/machinery/xenoanalyzer, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"xqv" = ( -/obj/structure/bed/sofa/south/white/right, -/turf/open/floor/almayer/sterile_green_side/northeast, -/area/almayer/medical/lower_medical_lobby) -"xqy" = ( -/obj/structure/window/framed/almayer/white, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "or4privacyshutter"; - name = "\improper Privacy Shutters" - }, -/turf/open/floor/plating, -/area/almayer/medical/operating_room_four) -"xqD" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = -17 - }, -/turf/closed/wall/almayer, -/area/almayer/command/securestorage) -"xrg" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"xrq" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/cargo, -/area/almayer/command/lifeboat) -"xrt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 12; - pixel_y = -24 - }, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/chief_mp_office) -"xry" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"xrC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/greencorner/north, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xrI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower/workshop) -"xsi" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/step_trigger/teleporter_vector{ - name = "Almayer_AresUp2"; - vector_x = -102; - vector_y = 61 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xsl" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering) -"xss" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"xsv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"xsw" = ( -/turf/open/floor/almayer/sterile_green_side/southeast, -/area/almayer/medical/lower_medical_medbay) -"xsz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/photocopier{ - layer = 2.9 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/medical/upper_medical) -"xsQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart/green, -/obj/item/weapon/dart/green, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xtM" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/sterile_green_side/east, -/area/almayer/medical/lower_medical_lobby) -"xub" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"xuc" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/cic_hallway) -"xui" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"xur" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/almayer/sterile_green_side/southwest, -/area/almayer/medical/morgue) -"xuy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer/red/northwest, -/area/almayer/hallways/lower/port_fore_hallway) -"xuE" = ( -/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ - dir = 1; - id = "Containment Cell 5"; - locked = 1; - name = "\improper Containment Cell 5" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Containment Cell 5"; - name = "\improper Containment Cell 5"; - unacidable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/biohazard/white, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/test_floor4, -/area/almayer/medical/containment/cell) -"xuQ" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/living/port_emb) -"xuY" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"xuZ" = ( -/turf/open/floor/almayer/silver/west, -/area/almayer/shipboard/brig/cic_hallway) -"xvE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/charlie) -"xvQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/sentencing{ - dir = 8 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"xvX" = ( -/obj/structure/machinery/cm_vending/gear/leader, -/turf/open/floor/almayer/plate, -/area/almayer/squads/bravo) -"xwd" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"xwl" = ( -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/almayer/squads/alpha_bravo_shared) -"xwm" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_fore_hallway) -"xwp" = ( -/obj/item/storage/box/matches{ - pixel_x = -11; - pixel_y = -3 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/item/reagent_container/food/drinks/cans/dr_gibb{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"xwE" = ( -/obj/structure/bed/chair/comfy/alpha, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xwX" = ( -/turf/open/floor/almayer/red/northwest, -/area/almayer/lifeboat_pumps/south2) -"xxa" = ( -/obj/item/stack/sheet/cardboard{ - amount = 50 - }, -/obj/structure/surface/rack, -/obj/item/packageWrap, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"xxh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/prop/magazine/boots/n160{ - layer = 2.8; - pixel_x = 4; - pixel_y = -8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/living/commandbunks) -"xxi" = ( -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal3" - }, -/obj/structure/desertdam/decals/road_edge{ - icon_state = "road_edge_decal5"; - pixel_x = -2 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/basketball) -"xxm" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/item/clothing/shoes/marine{ - layer = 4.1; - pixel_x = -5; - pixel_y = 20 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = 3; - pixel_y = 16 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/red{ - layer = 3.2 - }, -/obj/item/bedsheet/red{ - pixel_y = 13 - }, -/turf/open/floor/plating, -/area/almayer/living/port_emb) -"xxB" = ( -/obj/structure/machinery/fuelpump, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/north1) -"xxG" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/largecrate/random/barrel/red, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -2; - pixel_y = 16 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"xxI" = ( -/obj/structure/cargo_container/wy/mid, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = -22; - pixel_y = 3; - serial_number = 11 - }, -/obj/structure/sign/poster{ - desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; - icon_state = "poster12"; - name = "Beach Babe Pinup"; - pixel_x = 6; - pixel_y = 8; - serial_number = 12 - }, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - name = "'Miss July' Pinup"; - serial_number = 16 - }, -/obj/structure/sign/poster{ - desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; - icon_state = "poster10"; - name = "Koorlander Gold Poster"; - pixel_x = 29; - pixel_y = 6; - serial_number = 10 - }, -/obj/structure/bed/chair{ - dir = 1; - pixel_y = 42 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xxZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"xyk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/carpet, -/area/almayer/living/commandbunks) -"xyp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/hallways/upper/midship_hallway) -"xyt" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/item/folder/white{ - layer = 2.9; - pixel_x = -8 - }, -/obj/structure/machinery/computer/working_joe{ - pixel_y = 16 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"xyw" = ( -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xyB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/port) -"xyL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south2) -"xyN" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/brig/execution_storage) -"xyQ" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/lower/repair_bay) -"xyY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/east, -/area/almayer/squads/req) -"xyZ" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"xzf" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/blue/southeast, -/area/almayer/living/basketball) -"xzh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"xzx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"xzB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"xzI" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/hallways/lower/port_midship_hallway) -"xAe" = ( -/turf/closed/wall/almayer/research/containment/wall/corner, -/area/almayer/medical/containment/cell) -"xAt" = ( -/obj/structure/bed/chair/comfy/charlie{ - dir = 8 - }, -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"xAu" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"xAB" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/uscm, -/obj/item/clipboard, -/turf/open/floor/almayer/green/southwest, -/area/almayer/squads/req) -"xAY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"xBe" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/engineering/upper_engineering) -"xBn" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ - id_tag = "Boat1-D3"; - linked_dock = "almayer-lifeboat1"; - throw_dir = 1 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/port) -"xBK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/cargo, -/area/almayer/maint/hull/upper/u_f_p) -"xBQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) -"xBS" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_s) -"xBV" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/almayer/squads/req) -"xBW" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_f_s) -"xBY" = ( -/turf/open/floor/almayer, -/area/almayer/engineering/laundry) -"xCa" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/frame/table/wood/poor, -/obj/item/frame/table/wood/poor, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"xCb" = ( -/obj/structure/closet/secure_closet/fridge/dry, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"xCf" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/almayer/command/corporateliaison) -"xCs" = ( -/turf/open/floor/almayer/silver/southwest, -/area/almayer/hallways/upper/midship_hallway) -"xCy" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"xCB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/fore_hallway) -"xDe" = ( -/obj/effect/projector{ - name = "Almayer_Down4"; - vector_x = 19; - vector_y = -104 - }, -/turf/open/floor/almayer/no_build, -/area/almayer/hallways/upper/port) -"xDn" = ( -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"xDy" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer/test_floor4, -/area/almayer/maint/upper/u_f_p) -"xDC" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xDF" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"xDT" = ( -/obj/structure/platform/metal/almayer/west, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"xDV" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/red/north, -/area/almayer/hallways/upper/port) -"xEc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/landinglight/ds2{ - dir = 8 - }, -/obj/structure/platform_decoration/metal/almayer/west, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xEe" = ( -/obj/structure/prop/invuln/joey, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"xEs" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"xEz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/book/manual/surgery, -/obj/structure/sign/safety/biohazard{ - pixel_x = -17 - }, -/turf/open/floor/almayer/sterile_green_side/west, -/area/almayer/medical/operating_room_two) -"xEO" = ( -/turf/open/floor/prison/kitchen, -/area/almayer/engineering/upper_engineering) -"xEX" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/almayer/living/offices) -"xFt" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"xFx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"xFP" = ( -/turf/open/floor/almayer/red/northeast, -/area/almayer/shipboard/starboard_missiles) -"xFZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/gym) -"xGh" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/obj/item/seeds/goldappleseed, -/turf/open/floor/almayer/green/north, -/area/almayer/shipboard/brig/cells) -"xGo" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"xGE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/bravo) -"xGF" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_f_p) -"xGI" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = -6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_m_s) -"xGJ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_x = -13 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/living/briefing) -"xGK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/lights/tubes{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"xGT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xHa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"xHl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"xHp" = ( -/turf/open/floor/almayer/orange, -/area/almayer/squads/alpha_bravo_shared) -"xHt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - name = "\improper Engineering Storage"; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering) -"xHS" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - anchored = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/workshop/hangar) -"xHX" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/p_bow) -"xId" = ( -/obj/structure/surface/rack, -/obj/item/mortar_shell/he, -/obj/item/mortar_shell/he, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/req) -"xIj" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"xIk" = ( -/obj/structure/machinery/cryopod/right{ - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/medical/lower_medical_medbay) -"xIq" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/evidence_storage) -"xIu" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -14; - pixel_y = 28 - }, -/turf/open/floor/almayer/red/east, -/area/almayer/shipboard/brig/processing) -"xIw" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"xIQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/living/offices) -"xIV" = ( -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) -"xIW" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/surface/table/almayer, -/obj/item/book/manual/marine_law{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/poster, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"xJe" = ( -/turf/open/floor/almayer/greencorner/west, -/area/almayer/shipboard/brig/cells) -"xJh" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/analyzer, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"xJp" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"xJH" = ( -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie_delta_shared) -"xJR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"xJT" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"xJV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/engineering/lower) -"xKG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/door_control{ - id = "Under Construction Shutters"; - name = "shutter-control"; - pixel_x = -25 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xKM" = ( -/obj/structure/machinery/status_display{ - pixel_x = 16; - pixel_y = -30 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/starboard) -"xKT" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"xLi" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/map_item, -/obj/item/paper_bin/uscm{ - pixel_x = -7; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xLl" = ( -/obj/structure/machinery/cm_vending/clothing/military_police{ - density = 0; - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/shipboard/brig/general_equipment) -"xLn" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/s_stern) -"xLu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"xLw" = ( -/turf/open/floor/almayer/silver, -/area/almayer/hallways/upper/midship_hallway) -"xLX" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_midship_hallway) -"xMf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/port_point_defense) -"xMj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/sterile_green_side, -/area/almayer/medical/lower_medical_medbay) -"xMl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"xMm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_a_p) -"xMs" = ( -/turf/closed/wall/almayer/white, -/area/almayer/medical/operating_room_two) -"xMz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/hallways/upper/starboard) -"xMA" = ( -/obj/structure/machinery/computer/med_data, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/cic) -"xMB" = ( -/turf/open/floor/almayer/uscm/directional/southeast, -/area/almayer/command/cic) -"xMG" = ( -/obj/structure/machinery/door_control{ - id = "OuterShutter"; - name = "Outer Shutter"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;3" - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "OfficeSafeRoom"; - name = "Office Safe Room"; - pixel_x = 5; - pixel_y = 5; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer/plate, -/area/almayer/shipboard/panic) -"xML" = ( -/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/green/north, -/area/almayer/living/grunt_rnr) -"xMO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/starboard) -"xMR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/bravo) -"xNb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"xNf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower/engine_core) -"xNg" = ( -/obj/structure/pipes/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/lower) -"xNj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/hangar) -"xNu" = ( -/obj/structure/flora/bush/ausbushes/lavendergrass, -/turf/open/gm/grass/grass1, -/area/almayer/medical/upper_medical) -"xNv" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/almayer/silver/east, -/area/almayer/command/computerlab) -"xNz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/microwave{ - pixel_y = 7 - }, -/obj/item/storage/box/cups{ - pixel_x = 3 - }, -/obj/item/storage/box/donkpockets{ - pixel_y = 19 - }, -/turf/open/floor/almayer/plate, -/area/almayer/living/auxiliary_officer_office) -"xNM" = ( -/obj/structure/machinery/cm_vending/gear/vehicle_crew, -/turf/open/floor/almayer/cargo, -/area/almayer/hallways/lower/vehiclehangar) -"xOs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/turf/open/floor/almayer/dark_sterile, -/area/almayer/command/corporateliaison) -"xOL" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) -"xOT" = ( -/obj/structure/closet/secure_closet/fridge/meat/stock, -/turf/open/floor/almayer/plate, -/area/almayer/living/grunt_rnr) -"xOY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/research/containment/corner/east, -/area/almayer/medical/containment/cell) -"xPq" = ( -/obj/structure/filingcabinet, -/obj/item/folder/yellow, -/turf/open/floor/almayer/orange/north, -/area/almayer/engineering/lower/workshop/hangar) -"xPZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/orange/northeast, -/area/almayer/engineering/upper_engineering/port) -"xQa" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/command/cic) -"xQd" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_p) -"xQe" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_a_p) -"xQg" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/almayer/bluecorner/west, -/area/almayer/living/pilotbunks) -"xQj" = ( -/obj/item/pipe{ - dir = 4; - layer = 3.5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xQm" = ( -/turf/open/floor/almayer/research/containment/floor2/north, -/area/almayer/medical/containment/cell) -"xQz" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/port_aft_hallway) -"xQV" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xQW" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = -18 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"xRj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/emeraldcorner, -/area/almayer/squads/charlie) -"xRk" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/view_objectives{ - dir = 4 - }, -/turf/open/floor/almayer/silver/west, -/area/almayer/command/computerlab) -"xRw" = ( -/turf/open/floor/almayer/uscm/directional/north, -/area/almayer/living/briefing) -"xRH" = ( -/obj/structure/sign/safety/fibre_optics{ - pixel_y = 32 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer/tcomms, -/area/almayer/command/telecomms) -"xRJ" = ( -/obj/structure/bed/chair/comfy/bravo{ - dir = 8 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"xSw" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "cryo curtain" - }, -/turf/open/floor/plating, -/area/almayer/squads/charlie) -"xSx" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xSz" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer/silver/north, -/area/almayer/shipboard/brig/cic_hallway) -"xSA" = ( -/obj/structure/platform/metal/almayer/west, -/obj/structure/machinery/flasher{ - id = "briefing_flash"; - range = 12 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/uscm/directional/west, -/area/almayer/living/briefing) -"xSM" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/obj/effect/landmark/ert_spawns/distress_cryo, -/obj/effect/landmark/late_join, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"xSW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/red/west, -/area/almayer/squads/alpha) -"xSY" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/sterile_green_corner/north, -/area/almayer/medical/containment) -"xTt" = ( -/obj/structure/platform/metal/almayer, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/obj/item/ashtray/plastic{ - layer = 3.4; - pixel_x = 4 - }, -/obj/structure/largecrate/random/case, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) -"xTu" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/engine_core) -"xTx" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_p) -"xTG" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"xTH" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/turf/open/floor/almayer/red, -/area/almayer/shipboard/brig/processing) -"xTR" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/plating, -/area/almayer/command/cichallway) -"xTW" = ( -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/yellow{ - layer = 3.2 - }, -/obj/item/bedsheet/red{ - pixel_y = 13 - }, -/turf/open/floor/almayer/orange/north, -/area/almayer/living/port_emb) -"xUa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"xUy" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/p_stern) -"xUA" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/tank, -/obj/structure/sign/safety/life_support{ - pixel_x = -17 - }, -/turf/open/floor/almayer/mono, -/area/almayer/engineering/upper_engineering/starboard) -"xUB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/silver, -/area/almayer/command/cic) -"xUV" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/combat_correspondent) -"xUY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) -"xVc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "ARES StairsUpper"; - name = "ARES Core Access"; - pixel_x = 24; - pixel_y = 24; - req_one_access_txt = "90;91;92" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"xVe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/red, -/area/almayer/hallways/upper/starboard) -"xVk" = ( -/turf/open/space, -/area/space/almayer/lifeboat_dock) -"xVn" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"xVF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south1) -"xVI" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer/red/southwest, -/area/almayer/lifeboat_pumps/north1) -"xVS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/lifeboat_pumps/south2) -"xVT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/closed/wall/almayer, -/area/almayer/living/tankerbunks) -"xVY" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/green, -/area/almayer/hallways/lower/port_midship_hallway) -"xWd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/orange, -/area/almayer/squads/alpha_bravo_shared) -"xWo" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;21" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/squads/req) -"xWp" = ( -/turf/open/floor/almayer, -/area/almayer/living/offices/flight) -"xWv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) -"xWO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north1) -"xWT" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/window/reinforced{ - dir = 4; - health = 80 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 80 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/port_emb) -"xXa" = ( -/turf/open/floor/almayer/orange/west, -/area/almayer/engineering/upper_engineering/port) -"xXd" = ( -/turf/open/floor/almayer/silvercorner/east, -/area/almayer/hallways/upper/midship_hallway) -"xXh" = ( -/turf/closed/wall/almayer/research/containment/wall/west, -/area/almayer/medical/containment/cell) -"xXj" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - id = "Perma 1"; - name = "\improper cell shutter" - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Isolation Cell" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/perma) -"xXl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/lower/workshop/hangar) -"xXr" = ( -/obj/item/reagent_container/glass/beaker/bluespace, -/obj/structure/machinery/chem_dispenser/research, -/turf/open/floor/almayer/mono, -/area/almayer/medical/medical_science) -"xXT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/hallways/upper/starboard) -"xXW" = ( -/obj/structure/bed/chair/comfy/bravo, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xYf" = ( -/obj/structure/machinery/cm_vending/clothing/sea, -/turf/open/floor/almayer/plating/northeast, -/area/almayer/shipboard/sea_office) -"xYr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"xYB" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/starboard_point_defense) -"xYE" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xYP" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) -"xYQ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/south1) -"xYZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering) -"xZk" = ( -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = -10; - pixel_y = 10 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 4.2; - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/weapon/broken_bottle{ - layer = 4.51; - pixel_x = 9; - pixel_y = 1 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"xZt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/medical/morgue) -"xZG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/bedsheet/hop, -/obj/structure/bed, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"xZH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"xZM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"xZR" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer/orange/east, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xZU" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"yap" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/starboard_fore_hallway) -"yat" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_a_p) -"yaz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ - name = "\improper Officer's Study" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/officer_study) -"yaF" = ( -/obj/structure/pipes/standard/simple/visible{ - dir = 4 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = -32 - }, -/turf/open/floor/almayer/orange, -/area/almayer/engineering/lower) -"yaQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ - dir = 9 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"yaX" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/almayer/hallways/lower/vehiclehangar) -"yaZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ybm" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ybz" = ( -/obj/structure/machinery/brig_cell/cell_4{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/processing) -"ybP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"ybZ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/transmitter{ - dir = 4; - name = "Port Railgun Control Telephone"; - phone_category = "Command"; - phone_id = "Port Railgun Control"; - pixel_x = -26 - }, -/turf/open/floor/almayer/redfull, -/area/almayer/shipboard/port_missiles) -"ycd" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"ycl" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) -"ycm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"ycx" = ( -/obj/structure/bed/chair/comfy/delta{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/almayer/living/briefing) -"ycH" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/margherita{ - pixel_y = 8 - }, -/turf/open/floor/almayer/green/north, -/area/almayer/squads/req) -"ycM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/upper/u_m_p) -"ycZ" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer/blue/north, -/area/almayer/squads/delta) -"ydh" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/black, -/obj/item/tank/oxygen, -/turf/open/floor/almayer/plate, -/area/almayer/engineering/upper_engineering/port) -"ydz" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/lifeboat_pumps/north2) -"ydA" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer/no_build, -/area/almayer/hallways/lower/port_fore_hallway) -"ydE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/mono, -/area/almayer/medical/hydroponics) -"ydI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"ydM" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/living/cryo_cells) -"ydO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/bed/chair/comfy/bravo{ - dir = 1 - }, -/turf/open/floor/almayer/orangefull, -/area/almayer/living/briefing) -"ydY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"yeg" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer/green, -/area/almayer/hallways/upper/fore_hallway) -"yei" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/midship_hallway) -"yen" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ - dir = 8; - vent_tag = "Synth Bay" - }, -/turf/open/floor/almayer/aicore/no_build, -/area/almayer/command/airoom) -"yeH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/lifeboat_pumps/south2) -"yeN" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/bed/chair{ - can_buckle = 0; - dir = 4; - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/hangar) -"yeR" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - req_access = null; - req_access_txt = 19; - req_one_access = null - }, -/turf/open/floor/wood/ship, -/area/almayer/shipboard/brig/chief_mp_office) -"yfd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/almayer/hallways/lower/vehiclehangar) -"yff" = ( -/obj/structure/machinery/cm_vending/clothing/dress{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/command/cic) -"yfg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"yfm" = ( -/obj/effect/landmark/start/marine/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"yfn" = ( -/obj/structure/machinery/pipedispenser/orderable, -/turf/open/floor/almayer/plate, -/area/almayer/maint/upper/u_a_s) -"yfy" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"yfG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/power/apc/almayer/west, -/obj/item/storage/briefcase{ - pixel_y = 15 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"yfS" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/plating, -/area/almayer/living/grunt_rnr) -"yge" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/command/lifeboat) -"ygf" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/sterile_green_side/northwest, -/area/almayer/medical/lower_medical_medbay) -"ygp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ygv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"ygB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/green/southeast, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ygP" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/turf/open/floor/almayer/cargo, -/area/almayer/engineering/lower/engine_core) -"yhg" = ( -/obj/structure/machinery/camera/autoname/almayer/brig{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cells) -"yht" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/red, -/area/almayer/living/cryo_cells) -"yhI" = ( -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/south1) -"yhR" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"yhV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/brig/mp_bunks) -"yhZ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/p_bow) -"yia" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"yih" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_m_s) -"yiu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/midship_hallway) -"yiW" = ( -/obj/structure/machinery/cryopod/right{ - layer = 3.1; - pixel_y = 13 - }, -/turf/open/floor/almayer/cargo, -/area/almayer/squads/charlie) -"yiX" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/living/synthcloset) -"yjb" = ( -/obj/structure/flora/bush/ausbushes/ausbush, -/turf/open/gm/grass/grass1, -/area/almayer/medical/upper_medical) -"yjq" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - icon_state = "almayer_pdoor"; - id = "n_engi_ext" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/engineering/upper_engineering/notunnel) -"yjr" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_f_s) -"yjE" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/stern) -"yjG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/lobby) -"yjM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/blue/east, -/area/almayer/living/pilotbunks) -"yjU" = ( -/turf/open/floor/almayer/emeraldfull, -/area/almayer/living/briefing) -"yka" = ( -/obj/structure/platform/metal/almayer/east, -/turf/open/floor/almayer/red/east, -/area/almayer/lifeboat_pumps/north2) -"ykj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Rest and Relaxation Area" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/living/grunt_rnr) -"ykv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer/test_floor4, -/area/almayer/shipboard/panic) -"ykI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering/lower) -"yle" = ( -/obj/effect/landmark/start/marine/engineer/delta, -/obj/effect/landmark/late_join/delta, -/turf/open/floor/almayer/plate, -/area/almayer/squads/delta) -"ylh" = ( -/obj/structure/closet/radiation, -/turf/open/floor/almayer/test_floor5, -/area/almayer/engineering/lower/engine_core) -"ylN" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ymg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/almayer/maint/hull/lower/l_f_p) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -aKQ -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -"} -(17,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(18,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(19,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(20,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(21,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(22,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(23,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(24,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(25,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(26,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(27,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(28,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(29,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(30,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(31,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(32,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(33,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(34,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(35,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -feb -feb -feb -feb -feb -feb -feb -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(36,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aac -aaf -aaf -aaf -aaf -aag -feb -qmR -oog -dsA -rbK -tmH -feb -aag -aaf -aaf -aaf -aaf -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(37,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aad -hPI -hPI -hPI -hPI -hPI -feb -dhd -oog -jNT -fag -qCA -feb -hRu -hRu -hRu -hRu -hRu -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(38,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aag -hPI -naB -naB -naB -naB -mtl -vdl -nPb -fZX -dBS -nSu -rXE -xyN -ltO -tBP -tfE -hRu -aag -aaf -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(39,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -uDg -uDg -hPI -pQr -rib -vtG -naB -mtl -eCI -nOC -qVF -xdJ -kzr -jqY -elV -dJJ -dJJ -glP -hRu -xiV -xiV -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(40,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -uDg -uDg -lHk -naB -wnw -pHp -fgl -dya -fLF -kEq -mtl -mtl -mtl -mtl -ewI -xyN -hdQ -hUU -cXD -xyN -igS -xiV -xiV -aaf -aaf -aaf -aaf -aaf -aaf -aaf -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(41,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -uDg -uDg -uDg -uDg -uDg -uDg -uDg -uDg -aPN -lSJ -naB -pQr -jeR -wvI -vPf -fvA -qPD -vcm -tul -mNK -gtU -bjk -xyN -xyN -xyN -xyN -xyN -iuf -pnh -xiV -xiV -xiV -xiV -xiV -xiV -xiV -xiV -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(42,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -uDg -cth -gkr -xkc -oGj -iVD -xkc -mph -nlh -rGr -naB -naB -naB -naB -naB -dcy -qPD -qPD -qPD -qPD -quJ -rdA -dbs -sql -jyY -rwe -pdp -hZw -xYr -mjs -pdp -ohu -iUh -pdp -pdp -kSn -xiV -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(43,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aac -aaf -aag -uDg -gkr -xkc -gkr -vAg -gxI -kqC -bBU -xkc -eeA -naB -pQr -ggS -wvI -piK -fvA -qPD -wZL -ffg -ffg -wsh -eMJ -xkd -xkd -xkd -xkd -xkd -xkd -lRt -tsE -iVG -hmA -hmZ -oDh -oDh -pdp -xiV -aag -aaf -ajY -bdH -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(44,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -uDg -uDg -gkr -xkc -hvd -hvd -hvd -hvd -hvd -bLF -eyD -naB -kry -pHp -fgl -xXj -qXE -qPD -sPF -qPD -qPD -uQm -stO -xkd -teE -xJT -xkd -ljS -xkd -xkd -xkd -xkd -xkd -xkd -xkd -pdp -oDh -xiV -xiV -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(45,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aad -aag -uDg -pOp -gkr -cth -hvd -ddj -wlg -fuY -hvd -cQG -jXc -naB -pQr -bsp -hCV -naB -naB -uUu -qCU -qZF -qPD -iQd -qJo -xkd -vWG -lJL -dQp -vlM -iHG -dCe -moB -uns -vCy -eyV -xkd -mkF -oDh -pdp -xiV -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(46,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aad -aag -uDg -lDT -xkc -xyZ -hvd -vGn -ehl -ehl -uXu -cQG -alp -naB -naB -naB -naB -naB -naB -nVR -nVR -nVR -nux -tau -nVR -xkd -xik -bjQ -xkd -kmd -tUx -ebd -tHS -xGh -jVa -wDs -xkd -oHf -oDh -pdp -xiV -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aac -aaf -aaf -aaf -aaf -aaf -aag -dqw -bDF -bDF -dqw -aag -aag -aag -aag -aag -aag -aag -aag -aag -dqw -bDF -bDF -dqw -aag -aag -aag -aaf -aaf -aaf -aaf -aaf -ajY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(47,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aad -aag -uDg -xkc -gkr -hvd -hvd -iRp -iRp -iRp -hvd -cyc -vzy -fqQ -kHo -sFu -hnE -tTO -wFs -nkX -iQB -cmv -vzk -phN -iVP -xkd -xkd -xkd -xkd -umW -iOD -iOD -tHS -sqW -tUx -wRN -xkd -xkd -pdp -oDh -xiV -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -nBJ -nBJ -nBJ -aag -dqw -uwv -uwv -dqw -aag -aag -aag -aag -aag -aag -aag -aag -aag -dqw -uwv -uwv -dqw -aag -aag -aag -wid -wid -wid -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(48,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aad -aag -lrE -xkc -gkr -hvd -iUX -gii -gIO -gIO -hvd -gYx -oyC -bKI -xhU -xhU -jCX -sEz -iNh -wdF -wdF -wdF -wdF -cMl -icZ -xkd -uvY -oBq -xkd -wKJ -jVa -jVa -tHS -sVc -tUx -xJe -qLt -xkd -pdp -oDh -cPj -aag -etE -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -kJc -jFt -bAs -bAs -bAs -bDF -bDF -bAs -bTT -bTT -bAs -aag -aag -aag -aag -aag -bAs -bAs -bDF -bDF -bAs -bTT -bTT -bTT -bAs -kOR -jYM -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(49,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aad -aag -lrE -gkr -xkc -hvd -iUX -gJE -cKJ -hyV -keG -cQG -cQG -ugw -cwC -cwC -sEz -cwC -uun -oRk -oRk -oRk -utZ -cMl -hTt -kMH -tUx -iTI -dmZ -eZH -jVa -jVa -tHS -xGh -ycm -qCo -pWr -xkd -aGa -oDh -cPj -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -rUi -grv -bBA -bAK -bCY -bDO -bDO -bDO -bHI -bJS -bAs -aag -aag -aag -aag -aag -bAs -bHP -sSc -sSc -bDO -acr -bPG -acN -bBA -gTK -fWg -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(50,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aad -aag -lrE -vDh -xkc -lrq -lrq -lrq -lrq -lrq -lrq -lrq -uhA -aaP -tpn -tpn -srT -tpn -tpn -xjF -myP -gDt -bju -cMl -lMc -xkd -qFu -xkd -xkd -vdM -jVa -wtM -moB -sXQ -cyZ -jVa -fJT -xkd -rfB -pdp -cPj -aag -eSU -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -uRR -mFQ -bBA -hWJ -bCY -bDO -bDO -bDO -bHP -bJT -bAs -bAs -bAs -bAs -bAs -bAs -bAs -bNl -sSc -sSc -bDO -bHP -bPG -hpk -bBA -yhZ -wtD -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(51,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aad -aag -uDg -cth -qsp -lrq -kEc -chv -cAy -uhE -vKB -lrq -vjB -gIz -tpn -eVR -cak -vrM -tpn -mHb -hjM -xTH -bju -wSm -dEG -xkd -uvY -duT -xkd -eZH -jVa -jVa -moB -moB -dfk -vzz -moB -xkd -gNZ -pdp -xiV -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -ecS -eQR -gol -akb -bCY -bDO -bDO -bDO -abU -bHP -avw -bKn -bLk -bLw -bKn -bLk -avw -bHP -sSc -sSc -bDO -bPn -bPG -ald -gol -sGK -hLu -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(52,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aad -aag -uDg -cUl -gkr -lrq -heo -nqe -nqe -nqe -nqe -tLa -cQG -gfd -tpn -rqS -cak -vrM -tpn -pUD -bju -wdF -wdF -wSm -dPT -kVZ -tUx -iTI -nUj -eZH -tUx -vrx -yhg -lbs -eZH -tUx -cXi -xkd -ttB -pdp -xiV -aag -twB -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -eQR -xAu -bBA -bAN -bCY -bDO -bDO -bOq -bPo -bHP -avw -akb -axk -bLH -vuZ -ald -avw -bHP -sSc -sSc -bOq -bPo -bPG -acs -bBA -xHX -sGK -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(53,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -lrE -vOM -gkr -lrq -kui -uqo -pId -qMD -uqo -lrq -nVm -dRA -tpn -gIU -xIq -vrM -tpn -efT -nkF -hkH -kuJ -sLA -jSw -xkd -qFu -xkd -xkd -icM -thL -thL -thL -thL -nYd -thL -jVa -fgR -nEc -oDh -cPj -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -ldF -eox -bBA -bAO -bCZ -bDW -fya -ohA -ohA -ohA -bKb -akf -jbX -kNY -jbX -tuZ -bKb -ohA -ohA -ohA -cFh -bDW -bPJ -iuz -bBA -mVh -uMf -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(54,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -lrE -etN -xkc -lrq -sEZ -nqe -nqe -nqe -nqe -mza -cQG -qvE -tpn -tpn -tpn -tpn -tpn -xIu -xvQ -eDt -bju -cMl -kAL -xkd -uvY -sgE -xkd -qJZ -ohJ -thL -thL -uAL -liZ -rUk -jVa -fgR -azg -gKv -cPj -aag -rEr -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -ldF -eQR -bBA -bAP -aqu -aqu -bEF -bNm -bNm -bNm -avw -bKp -bLl -bLJ -bMS -bNe -avw -bNm -bNm -bNm -bOs -aqu -aqu -bQz -bBA -sGK -vOG -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(55,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -lrE -gkr -xkc -lrq -dEX -fxJ -fxJ -fAr -qmU -lrq -dmr -wLS -aVm -cmM -miy -iUG -cmM -snX -oIh -oIh -wNt -cMl -nlz -vNp -tUx -iTI -qxe -eZH -ohJ -thL -thL -ezX -uaU -rUk -xaM -fgR -hIG -pdp -cPj -aag -ajZ -bdH -bdH -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 -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -vCE -ldF -bBA -bBu -amg -amg -bFa -alU -alU -alU -alU -alU -alU -alU -alU -alU -alU -alU -alU -alU -bOM -amg -amg -rAD -bBA -sGK -mVh -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(56,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -uDg -xkc -xkc -lrq -iwV -iwV -iwV -iwV -lrq -lrq -kXt -wLS -eBx -cmM -hAf -cNI -bbi -wdF -wdF -wdF -wdF -kQu -cqM -xkd -qFu -xkd -xkd -pns -omt -omt -omt -omt -uxa -iZU -nhG -xkd -oDh -uqg -xiV -aag -uJk -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -amu -eQR -bBA -bBu -amg -amg -bFj -alU -bId -bJU -bKd -alU -bLm -bTG -bMT -alU -bNi -bNn -bNq -alU -bON -amg -amg -rAD -bBA -ozH -flr -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(57,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -uDg -gkr -old -cQv -oVf -rmx -bvH -evR -cQv -cQv -rmk -nuZ -cmM -cmM -pdT -otp -cmM -tzd -tzd -sgi -bju -wSm -kAL -xkd -uvY -qEA -xkd -eZo -thL -thL -thL -thL -tov -thL -sUs -xkd -gNZ -pdp -xiV -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -kMW -eQR -bBA -bBv -aqu -tkq -bFa -alU -neO -aoi -avB -bKq -ayw -aoi -avB -bKq -ayw -aoi -azA -alU -bOO -tkq -aqu -bQG -bBA -uoO -mVh -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(58,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -lrE -gkr -wJC -cQv -cBw -kde -kde -ajj -mZQ -cQv -dFl -tUK -kTp -sYl -fgt -kCY -kTp -gHt -oIh -eNR -bju -wSm -ybz -rrz -tUx -iTI -tlp -lXb -thL -oXp -thL -thL -tov -thL -xhx -fgR -oDh -pdp -cPj -aag -scz -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -nBJ -iWJ -eQR -bBA -bBx -amg -bEw -bFk -bHq -let -bJX -bJX -bKs -bLo -bMO -bMU -bNf -bJX -bJX -let -bHq -bFk -bPq -amg -rAD -bBA -sGK -nhV -wid -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(59,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -lrE -gkr -wMF -cQv -eaf -bEv -quj -vgi -rXd -cqJ -oJm -tUK -kTp -hUh -nWS -xpw -kTp -neC -mjt -vqc -edo -fTt -lMc -xkd -qFu -xkd -xkd -thq -ezX -pqF -rUk -thL -iFc -thL -tUx -fgR -pdp -hIG -cPj -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aag -aag -nBJ -dKS -ffN -bBA -bBy -amg -aoa -ald -alU -bIn -bJY -aoi -bLh -bLp -bMP -bNa -bLh -aoi -bNo -bNt -alU -akb -aoa -amg -bQE -bBA -bME -sGK -wid -aag -aag -ajY -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(60,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -lrE -xkc -vDh -cQv -eaf -bEv -lEe -pGT -pGT -vkM -ksm -bxE -cmM -oeZ -wLF -oeZ -oeZ -ptq -oRk -eNR -bju -cMl -dEG -xkd -uvY -lSs -xkd -kbX -ezX -prY -rUk -thL -thL -thL -tUx -fgR -pdp -aCA -cPj -aag -okD -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -nBJ -eQR -bTW -bBA -bBz -aqu -bEx -bQt -alU -bIw -bJY -sta -rxK -amX -bLh -azA -pfa -iLq -bNo -bNS -alU -bPg -bEx -aqu -bQI -bBA -gsy -sGK -wid -wid -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(61,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aad -aag -uDg -xkc -xkc -cQv -eaf -bEv -vyH -ajj -rXd -cqJ -oJm -tUK -kTp -uLE -nWS -cTy -oeZ -emp -emp -emp -iEx -cMl -qFE -wDC -tUx -iTI -fKw -pgP -thL -thL -thL -thL -thL -thL -tUx -xkd -pdp -vhA -xiV -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -ldF -ldF -xiP -bBA -lsV -amg -ddz -ald -alU -bIx -bJZ -kyN -bLi -bLq -bMR -bNb -bNg -mTm -gjt -vJo -alU -bPh -bPC -amg -pyL -bBA -cDb -sGK -nhV -wid -aag -ajZ -bdH -bdH -bdH -bdH -aaa -aaa -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 -"} -(62,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aad -aag -uDg -lDT -xkc -cQv -eaf -bEv -sBg -uGN -rXd -cQv -mAY -tUK -kTp -hoW -nWS -aIY -oeZ -cFC -oIh -sBQ -skj -tXc -cqM -xkd -qFu -xkd -xkd -cvH -thL -thL -thL -thL -thL -thL -tUx -xkd -pdp -oDh -xiV -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaf -aaf -aag -nBJ -nBJ -ldF -eQR -uFp -bBA -bBA -tiR -bBA -bBA -alU -bIy -alU -alU -alU -syg -alU -pQz -alU -alU -alU -pzW -pzW -pzW -pzW -hNB -pzW -pzW -ipB -mVh -sGK -wid -wid -aag -aaf -aaf -aaf -ajY -aaa -aaa -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 -"} -(63,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aad -aag -uDg -gkr -qsp -cQv -xLl -bEv -kde -ajj -tuk -cQv -kYU -tUK -kTp -krO -nWS -glG -oeZ -ehX -mTN -hZJ -iLG -jXd -kAL -xkd -uvY -cjk -xkd -pgP -tUx -tUx -tUx -tUx -tUx -vsz -oEE -xkd -gNZ -pdp -xiV -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -nBJ -nBJ -nBJ -ldF -ldF -bos -bos -bos -haR -uHT -jHn -kcp -bWJ -nar -alU -bXo -oCi -bLs -mZM -aoi -grG -bXY -alU -xNM -ikl -eLp -dFM -lEV -mZP -sDx -sDx -sDx -mVh -sGK -wid -wid -wid -wid -aag -ajZ -aaa -aaa -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 -"} -(64,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -bdH -bdH -aad -uDg -uDg -xkc -eeA -cQv -dzG -kde -ioV -cQv -tlk -cQv -uhA -tCH -oeZ -oeZ -wLF -oeZ -oeZ -mFc -fbr -emp -lze -wSm -slf -bli -tUx -iTI -bQc -pgP -uVV -iBl -cHk -rkV -rkV -cHk -vYi -cHk -pRs -pdp -xiV -xiV -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -fUz -ldF -eQR -ldF -ikA -bos -gpO -uHT -bKP -uHT -sGQ -kcp -wMv -nCR -alU -uDn -bKf -bLs -bLj -aoi -bNk -ecZ -alU -odt -ikl -qAy -mua -mua -mua -lEV -eQz -sDx -mVh -fJu -mVh -roj -qzA -wid -aag -ajZ -aaa -aaa -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 -"} -(65,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -bdH -bdH -aad -uDg -hzN -gkr -krG -cQv -rdM -gUg -cov -cqJ -may -hoK -mcp -hzG -eyD -ngr -cDN -peO -lEv -jic -qGf -emp -bju -wSm -jSw -emp -emp -emp -emp -vbo -emp -emp -cHk -hlI -ekZ -kvL -oix -cHk -uxb -oDh -pdp -xiV -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -lJM -ldF -eQR -ldF -lyP -bos -gpO -kcp -kcp -iqp -kcp -kcp -jgl -kcp -alU -alU -alU -iTW -alU -noo -alU -alU -alU -wrr -kjw -hBr -tqQ -hgp -hgp -hgp -nef -sDx -mXm -mVh -sGK -sGK -nhV -wid -aag -ajZ -aaa -aaa -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 -"} -(66,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aaa -aaa -bdH -bdH -aad -uDg -fHb -gkr -vxM -vxM -vxM -vxM -vxM -vxM -tfZ -cQG -cQG -hzG -eyD -tdy -cDN -oFY -oFY -yjG -ncl -jcf -bju -cMl -oeB -emp -slF -oIh -qUz -ksg -oIh -iTl -cHk -frt -vUI -tgJ -wVh -cHk -cHk -oDh -pdp -xiV -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -eQR -eQR -ldF -eQR -sxS -bos -gpO -kcp -bBD -bTS -bTS -lxo -qcy -kcp -sub -sub -tqf -pHF -vYd -ghF -eSp -ghF -aFG -pPQ -juS -mdk -mdk -mdk -mdk -mdk -kCd -bSv -bSv -bSv -bSv -bSv -sGK -wid -aag -ajZ -aaa -aaa -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 -"} -(67,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -bdH -bdH -aad -uDg -xkc -gkr -vxM -rfY -kGu -iqR -fyp -wJh -oJm -cQG -cQG -hzG -nzT -tff -cDN -oFY -cQL -npO -ncl -jcf -bju -cMW -qEy -vKr -rQc -oDy -oDy -wsq -vxK -gwj -oiz -csy -csy -bWQ -deH -szG -cHk -pdp -kIf -xiV -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -ldF -ldF -wcJ -jCr -nQn -bos -uHT -kcp -bTR -iEg -oQM -aqI -aqI -kcp -bOw -mYt -jsR -vPW -vyB -vyB -vyB -vyB -aFG -vFp -yaX -sje -sje -sje -sje -sje -jhS -qih -bTH -foN -cDZ -bSv -hLu -wid -aag -ajZ -aaa -aaa -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 -"} -(68,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aac -aag -uDg -kac -xkc -vxM -tQi -wee -wee -fRS -wJh -iFK -ksm -haY -kaQ -vNT -oSC -uFq -wsl -wSu -xIW -nah -emp -gbw -oRk -jyb -emp -bPH -rJj -mBx -utZ -pyj -jPP -cHk -wxF -vJc -kUg -ifz -fyI -cHk -pdp -ome -xiV -aag -ajY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -ecS -ldF -bos -bos -bos -bos -uHT -kcp -lxW -hPh -wGX -bFr -ppe -kcp -lEV -ghF -ghF -jak -jdC -jdC -jdC -jdC -wiQ -dEo -fGd -sje -sje -sje -sje -sje -jhS -bSv -tjw -bTH -bTV -bSv -sGK -wid -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bTg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(69,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -uDg -fco -qsp -vxM -jvP -rDQ -rDQ -rDQ -ctT -wXz -aNW -tvJ -eyD -eyD -tsX -tsX -epu -oLF -tsX -tsX -emp -vyi -vyi -vyi -emp -emp -emp -emp -emp -wIC -lnh -wIC -rWn -rWn -cHk -cHk -gxt -cHk -dJy -aCA -xiV -aag -ajZ -bdH -bdH -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 -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -eQR -ldF -bos -vkO -ibf -bos -rIw -kcp -wTN -kZN -rgK -hbu -iYe -bJl -yfd -yfd -yfd -kgS -lEV -lEV -lEV -lEV -aFG -mua -yaX -sje -sje -oiX -sje -sje -rqQ -bSv -ifb -bTH -bSv -xVT -flr -wid -aag -ajZ -aaa -aaa -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 -"} -(70,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -uDg -lDT -xkc -vxM -sbP -sbP -sbP -sbP -wJh -oWK -jwr -eyD -eyD -tHr -mqg -udR -vka -uwN -nVq -xuZ -mSs -xuZ -xuZ -xuZ -xuZ -rEY -gxU -giR -vUP -wIC -qZA -dgx -fKi -vxG -wIC -whQ -bHu -cHk -oLf -hIG -xiV -aag -ajZ -bdH -bdH -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 -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -ldF -eQR -bos -lBl -nEO -bos -gpO -kcp -oMi -bAZ -bTS -bTS -niR -kcp -lEV -ghF -ghF -pHF -lEV -ghF -ghF -ghF -aFG -mua -hoc -sje -sje -sje -sje -sje -jhS -bSv -aIX -aIX -bSv -xcI -sIu -wid -aag -ajZ -aaa -aaa -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 -"} -(71,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -uDg -xkc -gkr -vxM -pas -ncf -kjk -qxr -wJh -oWK -rPF -pfd -ceZ -jnD -hUW -hiM -rWs -qNR -hiM -hiM -hiM -hiM -rWs -rWs -rQt -cgT -xuc -gXx -wdh -wIC -mHz -jPS -jPS -xrt -wIC -aDt -jTU -cHk -oDh -xas -xiV -aag -ajZ -bdH -bdH -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 -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -ldF -eQR -rqv -gpO -gpO -bos -gpO -kcp -kcp -kcp -sXE -kcp -kcp -kcp -lEV -vyB -vyB -pHF -lEV -ghF -vyB -vyB -aFG -pJq -yaX -sje -sje -sje -sje -sje -jhS -bSv -cop -cop -bSv -kxe -sGK -wid -aag -ajZ -aaa -aaa -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 -"} -(72,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -uDg -xkc -gkr -vxM -vxM -vxM -vxM -vxM -gaJ -vMJ -qFX -cAR -vGA -hUW -dHd -vka -lnt -eAF -uVA -uVA -uVA -uVA -gde -uVA -wIQ -xWv -aQb -vka -jUY -wIC -hNY -qFi -vAG -hsj -wIC -cHk -cHk -cHk -oDh -nEc -xiV -aag -ajZ -bdH -bdH -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 -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -nBJ -ldF -eQR -bos -iWH -gpO -bos -gpO -nEZ -kcp -bTU -gZK -bTS -lyX -kcp -rMj -ghF -vyB -pHF -lEV -ghF -vyB -ghF -aFG -pPQ -juS -jjl -jjl -jjl -jjl -jjl -kCd -bSv -kBY -bTn -bSv -mVh -mVh -wid -aag -ajZ -aaa -aaa -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 -"} -(73,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaf -aaf -aag -aag -uDg -cUl -xkc -ode -xkc -gNg -cAR -dRj -yhV -jvc -jEV -cAR -iuE -uwN -vka -pRO -kqy -awz -awz -cZh -cZh -cZh -awz -awz -jfK -wIQ -mPj -omy -sCQ -wIC -wvE -jhI -jfY -bra -wIC -eQm -rXQ -vky -oDh -pdp -xiV -aag -aag -aaf -aaf -aaf -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nBJ -nBJ -nBJ -nBJ -nBJ -eQR -ldF -bos -bos -olW -bos -uHT -gUi -kcp -onY -wdf -bTS -kcp -kcp -sDx -ghF -vyB -pHF -lEV -ghF -vyB -ghF -sDx -prl -gNy -fbU -vbZ -qEl -qEl -qEl -vWs -bSv -bSv -bSv -bSv -sGK -mVh -wid -wid -wid -wid -wid -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 -"} -(74,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -adG -adG -adG -adG -adG -adG -rvI -cYo -ode -gkr -gkr -cAR -cAR -cAR -pKU -vOu -cAR -udK -mwA -lnt -cgO -awz -awz -nID -wPF -eHx -uKd -oER -awz -awz -mgj -wIQ -jHh -jUY -wIC -aWg -jES -vBJ -qTQ -wIC -oDh -pdp -vky -pdp -paJ -tuA -tuA -tuA -tuA -tuA -tuA -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nBJ -ldF -jsE -rdN -eQR -eQR -eQR -ldF -sXq -rdN -rMO -uHT -hfv -kcp -xNz -utK -rKA -kcp -kcp -sDx -hIF -vyB -pHF -lEV -ghF -vyB -kEW -sDx -xHl -vyB -mQd -akn -vTM -vyB -lEV -meE -gGw -mVh -iBu -sGK -mVh -mVh -mVh -sGK -gDX -sGK -wid -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 -"} -(75,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -adG -aeK -aeK -bur -hdd -akC -akC -akC -akC -uvp -gkr -cAR -pbm -qjK -jvc -dGT -cAR -bmz -wSR -mMV -awz -awz -aJp -jgJ -jgJ -jgJ -jgJ -jgJ -mZb -awz -awz -woy -laO -nRH -wIC -tiF -vAG -opF -pDW -wIC -oDh -lhj -kCi -kCi -kCi -kCi -hjA -nIE -jKn -pyi -tuA -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fwK -cZB -uaG -uaG -uaG -uaG -uaG -uaG -uaG -uaG -bcm -bcm -kcp -kcp -kcp -kcp -kcp -kcp -kcp -sDx -lQB -qax -jTH -gPU -lQB -qax -lQB -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -rgt -rgt -sYr -rgt -rgt -rgt -rgt -rgt -ctw -hAh -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 -"} -(76,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -adG -afa -aeK -bur -wdI -sFf -bbV -bzz -akC -pzc -gkr -cAR -pQI -gym -gSz -cNJ -cAR -pZS -pEB -jUY -qwp -aVI -jmY -rHc -xhZ -xhZ -xhZ -rHc -qyo -udx -qwp -pZS -jHh -jUY -wIC -wIC -vzj -wIC -wIC -wIC -oDh -nYi -kCi -sDD -kOv -cRv -sQF -nIE -jKn -vjg -tuA -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fwK -elY -uaG -sbZ -lxd -dPk -nBV -dyq -rVB -uaG -lYN -byr -aXh -bAQ -aXj -bDH -xyw -bIo -bKt -bLD -aYt -btO -btN -xyw -aYt -btO -aYt -mIz -xyw -bYq -bZi -bZO -caM -aXj -qUh -xyw -ccG -rgt -gMS -vXF -hsc -epk -lwG -uJb -rgt -wRf -hAh -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 -"} -(77,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -adG -aeK -aeK -bur -xFP -nIt -adu -aHZ -akC -lDT -gkr -cAR -jgR -iAg -vaS -bsF -cAR -vkR -wsD -jUY -qwp -eei -jmY -iwW -sTm -oSq -sTm -tdT -qyo -itX -qwp -vGA -uwN -uVd -wIC -wjY -aTg -rFg -kkv -wIC -pdp -pdp -kCi -uAj -qfa -btD -vmW -nIE -jKn -pyi -tuA -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -okd -lql -okd -urk -fmZ -ePq -fmZ -cqd -jhc -eml -btO -aYt -bzQ -bAS -baG -bDI -btO -bhT -bKu -btO -aYt -wqh -bym -brW -brW -bve -bwn -bVM -bVM -bAh -bZj -bVM -bwn -bVM -bVM -bwn -bVM -oTH -kUA -gRJ -mqB -vjG -mqB -oQw -avp -oAa -efk -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 -"} -(78,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -adG -adG -amz -amz -aly -nkx -bbZ -btv -akC -lCm -gkr -cAR -cAR -eLX -vaS -nCD -cAR -kfE -wsD -jUY -qwp -rBx -jmY -iwW -sTm -gwR -sTm -tdT -qyo -pbW -qwp -cDn -uwN -jUY -wIC -lcW -aTg -wIC -wIC -wIC -pdp -iEa -kCi -eqI -ssZ -btD -awC -uMj -uMj -tuA -tuA -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -okd -lql -okd -nDb -jhc -ccL -rDf -xZM -mnc -eml -btO -aYt -aYt -aYt -aYt -bdK -aYt -bhU -bjR -aYt -aYt -wqh -bHB -xyw -btO -bcc -aYt -aYt -aYt -bAi -aYt -aYt -aYt -aYt -aYt -aYt -btO -tpG -wdQ -ybP -dhQ -dcx -mLg -wAK -efk -bTz -efk -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 -"} -(79,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aeE -afb -ayq -cfE -cfE -pvP -adu -aHZ -akC -jdn -lgk -hMM -cAR -jlE -cXV -kqd -cAR -xDn -pEB -jUY -awz -wkH -hmS -mWV -jZu -sco -fqO -lIp -hWO -fqc -awz -gGr -jHh -sCQ -wIC -wtY -aTg -jIT -wIC -aCA -pdp -pdp -kCi -nwW -btD -btD -rVN -rVN -vly -ybZ -pun -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -okd -lql -okd -nDb -jhc -jhc -jhc -vOV -eAm -eml -btO -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu -bwm -bHB -xyw -btO -bSR -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu -aYu -btO -tpG -hbA -uky -mLg -mLg -mLg -wAK -efk -bTz -efk -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 -"} -(80,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aeE -aie -aTy -adu -adu -adu -adu -aHZ -akC -pek -rir -pek -cAR -gdG -kxP -mea -cAR -nNv -pEB -jUY -qwp -wyt -jmY -iwW -dCr -gwR -sTm -tdT -qyo -tsy -qwp -ora -laO -rKQ -wIC -yeR -aTg -nNg -wIC -pjz -uTs -pjz -kCi -nRR -btD -btD -btD -btD -tnb -oit -pun -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -okd -lql -okd -bRt -oGm -hPD -aIy -ekR -gWm -mpV -bvf -bdL -bvf -bvf -bvf -bdL -bvf -bvf -bvf -bvf -bvf -bvf -bIe -baN -bvf -bvf -bvf -bvf -bvf -bvf -bvf -bdL -bvf -bvf -bvf -bdL -bvf -srh -gKo -fsf -fuU -cnI -qfq -vjT -efk -bTz -efk -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 -"} -(81,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aeE -aig -brf -cSC -cSC -nIt -adu -hxG -akC -ibP -loE -cmr -cAR -cAR -cAR -cAR -cAR -xSz -pEB -jUY -qwp -sUE -jmY -iwW -dCr -oSq -sTm -tdT -qyo -tsy -qwp -pZS -jHh -vCx -wIC -wIC -wIC -wIC -wIC -hrI -ioM -xCy -kCi -nNt -vqC -btD -pPN -pPN -gKF -ndZ -pun -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fwK -jru -uaG -aEf -lxd -cif -jaz -dyq -lxd -uaG -vCg -bHB -xyw -xyw -xyw -bdM -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xpT -xyw -xyw -xyw -bHB -osx -rgt -qTu -wlD -gTk -qSI -lwG -uJb -rgt -oCa -hAh -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 -"} -(82,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -adG -adG -amz -amz -aly -wmg -adu -cqQ -afT -txy -rbp -cri -euL -hiM -hiM -qRj -xuZ -jnD -wsD -jUY -qwp -iiZ -jmY -rHc -lAy -wjq -wjq -rHc -qyo -tsy -qwp -vGA -uwN -pYX -xuZ -pcj -hXm -fZq -iFA -sLx -twQ -twQ -bpd -bqT -vZv -vjK -awC -uMj -uMj -tuA -tuA -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fwK -cZB -uaG -uaG -uaG -uaG -uaG -uaG -hte -lma -xyw -bHB -xyw -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -puI -aYt -aYt -aYt -aYt -bfY -baR -bfJ -btO -dTI -btO -aYt -xyw -bHB -xyw -bcm -hOV -hOV -hOV -hOV -hOV -hOV -hOV -vVZ -hAh -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 -"} -(83,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -adG -aeK -aeK -bur -hdd -pvP -adu -frF -akC -oUt -cmr -iPq -aMf -vka -vka -mPj -mIy -eEw -rTk -nRH -awz -awz -fRr -dmv -cHE -dmv -dmv -dmv -olU -awz -awz -vSN -mPj -rWs -inh -ewr -lPC -mgy -qoN -tVx -feG -pPy -kCi -nRR -btM -vjK -dUZ -nIE -jKn -pyi -tuA -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -nmp -eWs -usq -rQw -pOH -sbt -smU -nZR -lpl -xyw -bHB -gjm -aYu -ilG -aYt -bfJ -btO -btO -btO -btO -aYt -bcm -bcm -btG -btO -btO -btO -btO -aYt -bBN -bcm -caN -aYu -bcb -bHB -btO -bcm -sCW -nvX -tTC -jdu -tWd -aPe -hOV -ygv -kyP -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 -"} -(84,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -adG -afa -aeK -bur -wdI -aHY -tyK -iKI -akC -akC -aMf -hSv -xoB -xoB -kzy -wIQ -jHh -vka -lnt -ciN -sUg -qwp -vYM -fJm -aAq -iah -mGe -dCx -rpK -qwp -xmg -ggt -wIQ -vka -jHh -lnt -ckP -xTx -xTx -cyv -eKZ -xTx -kCi -cfk -uws -cRv -nwx -nIE -jKn -vjg -tuA -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -klT -eWs -njO -riC -eqd -goY -fqJ -nOX -xcV -xyw -bHB -wqh -xyw -bcc -aYt -bfK -aYt -aYt -aYt -aYt -aYt -anW -aYt -aYt -aYt -aYt -aYt -aYt -aYt -btO -sEq -wqh -xyw -bcc -bHB -aYt -bcm -xsQ -tTC -tTC -tTC -tTC -tTC -iho -uKH -kyP -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 -"} -(85,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aad -adG -aeK -aeK -bur -xFP -akC -akC -akC -akC -ehM -cmr -iPq -oQJ -xoB -xoB -vSN -jHh -lnt -dUE -awz -awz -awz -jKF -awz -rGE -awz -lsp -awz -jKF -awz -awz -awz -sTo -wIQ -jHh -jUY -xTx -xTx -hrI -tVx -feG -bxY -kCi -kCi -kCi -kCi -vmW -nIE -jKn -pyi -tuA -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -xzB -bfs -bYW -bYW -bYW -bYW -kNf -vpT -xcV -xyw -bHB -sXB -baH -bcd -bdO -bfL -baH -bjS -bdO -bfL -baH -bjS -bdO -bfL -baH -bjS -bdO -bfL -baH -bjS -bdO -bEA -baH -fVz -bHB -bBN -bcm -uPQ -tTC -tTC -tTC -tTC -gzN -hOV -uXm -kyP -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 -"} -(86,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aad -adG -adG -adG -adG -adG -adG -ltw -cmr -oRm -cmr -cmr -iPq -oQJ -pcc -xoB -xDn -uwN -wiN -awz -awz -awz -awz -aGb -qVS -aUe -gAl -aVG -aGj -aVR -awz -awz -awz -awz -oWg -uwN -jUY -xTx -lym -hrI -lIQ -noy -rcG -lwY -feG -kfB -tuA -tuA -tuA -tuA -tuA -tuA -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -xzB -bfs -qfQ -cJm -jwi -bYW -phw -xMG -xcV -xyw -bHB -aZO -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGF -bHB -aYt -bcm -vKI -tTC -hhd -ybm -ffq -rsV -hOV -mLN -kyP -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 -"} -(87,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -cZe -cmr -lSX -uaA -snx -snx -fLt -cmr -fYr -xoB -pNa -iCu -awz -awz -agb -azC -awz -nne -aGj -oSw -vIu -aVH -aGj -iQj -awz -oQs -nFm -awz -ceE -eMP -faX -xTx -tIX -ioM -abn -ioM -lIQ -qOY -xZH -mSr -nLp -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -xzB -bfs -wVN -qxI -qmM -bYW -wFN -wFN -tGH -hmy -bHB -aZP -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGG -bHB -btO -bcm -kQr -tTC -tTC -tTC -tTC -tTC -hOV -uKH -kyP -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 -"} -(88,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -cZe -cCL -vDz -kcH -kcH -kcH -kcH -kcH -kcH -kcH -kWq -qnh -aVG -awz -afZ -afZ -awz -xTR -awz -cRb -awz -opC -awz -xTR -awz -afZ -afZ -awz -dFR -qnh -ouW -mKq -dHZ -dHZ -aES -aES -aES -aES -lIQ -xZH -nLp -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -onv -bfs -pjh -qxI -qxI -iXm -qxI -qxI -vvX -xyw -bHB -aZQ -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGH -bHB -btO -bcm -qhG -krJ -jOt -tTC -tTC -tTC -hOV -uKH -kyP -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 -"} -(89,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -cZe -cZe -cZe -cZe -iPq -cmr -kcH -kcH -kcH -kcH -xKT -eqN -aBP -aKa -qnh -ewS -oBA -aom -aom -oUG -aom -bzR -qnh -oUG -aKa -bzR -aom -oUG -aom -aom -mJe -iVy -qnh -aKa -rrB -aGr -eDu -tKr -uNg -cLN -aES -hrI -tVx -nLp -nLp -nLp -nLp -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -xzB -bfs -wFi -qxI -dKO -ykv -jPu -qKl -pPd -xyw -bHB -aZR -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGI -bHB -xyw -bcm -gOk -tTC -tTC -tTC -tTC -bjg -hOV -siT -kyP -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 -"} -(90,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aad -aag -aag -cZe -ivu -gSy -ltw -iPq -cmr -kcH -rlf -soq -eYQ -eqN -dmA -hyQ -iur -lTt -haB -dvl -miE -dCK -esF -mQc -mQc -wgk -gaQ -aIl -aGv -aGv -dvl -fYf -uCW -omb -haB -gtp -qfA -tYX -tpD -xfO -iTD -vCO -vCO -jxB -hrI -tVx -hrI -hrI -hrI -nLp -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -dvD -bfs -bfs -sir -bfs -bfs -eWs -eWs -eWs -xyw -bHB -aZO -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGF -bHB -eEc -hOV -hOV -tTC -tSm -tcd -tTC -rsV -hOV -siT -kyP -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 -"} -(91,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aad -aag -aag -cZe -nHu -sit -snx -oVY -cGA -kcH -rBa -nPs -vEj -nPs -rJD -hyQ -fEk -hlU -wVW -feD -azL -aJw -iBY -wVW -wVW -wVW -wVW -wVW -wVW -wVW -dmg -vMI -gII -oPy -wVW -fDU -uiZ -mKq -qCy -rpp -vCO -vCO -vCO -jxB -gUu -dWc -lVW -kcs -rDH -nLp -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -fea -eWs -rsS -xzB -mKs -sCT -rXU -rEt -eWs -wlb -bHB -aZP -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bFJ -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGG -bHB -bGK -rrh -xKG -gyH -rSx -dCz -tTC -lDA -hOV -siT -kyP -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 -"} -(92,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aad -aag -aag -cZe -lSX -nRE -cmr -cmr -sWw -kcH -rIW -oGx -wvU -yiX -nrb -hyQ -aic -aov -wVW -wVW -sEp -wVW -wVW -wVW -swH -ucz -wVW -sSG -sEM -wVW -wVW -wVW -osz -wVW -wVW -aKn -aKz -pQy -jhW -mWD -wmT -jhW -mWD -jxB -xBK -moc -pYQ -tVx -hrI -nLp -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -sGw -dvD -kWI -xzB -dvD -ipk -dvD -xzB -dvD -meT -wqh -bHB -aZQ -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGH -bHB -cuy -rrh -iNR -uCR -tTC -tTC -tTC -fca -vjS -xee -kyP -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 -"} -(93,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aad -cZe -cZe -cZe -vfS -cmr -cmr -agj -agj -agj -agj -agj -agj -kcN -kcN -agj -akL -aov -wVW -apo -fHh -wVW -lZs -lVX -sni -ayz -dAX -aQg -vpV -snI -aGp -wVW -aDv -aHK -wVW -aKn -aKy -mKq -aES -aES -aES -aES -aES -aES -aES -aES -nVn -cZO -hrI -nLp -nLp -nLp -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaf -sGw -xzB -eWs -omx -xzB -rAw -qNK -rEt -sCT -eWs -pyC -bHB -aZR -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGI -bHB -kwQ -rrh -iNR -uCR -rDR -tTC -wyz -gzN -hOV -uKH -kyP -aaf -aaf -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(94,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aad -tvt -fRg -peM -jUV -cmr -agj -agj -jbN -mTc -hkX -yfG -lxE -kcN -twI -ufL -aic -aov -wVW -arF -alX -auQ -awm -avS -nwD -asR -pbs -pbV -aPB -aJG -aGq -auQ -aIf -aEA -wVW -aKn -iJB -mKq -aVU -aRq -bHG -ceK -sxD -bhJ -bHG -aES -aES -fMU -hrI -dPd -rLH -rwZ -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -sGw -sGw -xzB -eWs -eWs -sOr -eWs -eWs -eWs -eWs -eWs -cCE -bHB -aZO -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGF -bHB -iAw -hOV -hOV -tTC -tTC -tTC -jRp -rsV -hOV -kzs -kyP -kyP -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -"} -(95,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aad -tvt -jhR -fix -pfL -cmr -agj -kyR -agc -qfD -agc -kJm -gFR -kcN -cod -ufL -aic -aov -wVW -arG -alX -lQG -oPE -alZ -auT -aBR -awD -bZJ -aRt -axp -aPI -lQG -aIf -aEB -wVW -aKi -amY -aVg -aVV -aWV -aZy -ceK -aES -bpe -brS -rOs -aES -dWA -hrI -hrI -dPO -rwZ -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -sGw -dvD -xzB -eWs -uTS -dON -oJj -vLp -oYA -gWt -jHt -amo -bHB -aZP -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGG -bHB -btO -xjW -uTk -tTC -tTC -tTC -cyR -tTC -hOV -qpV -hSb -kyP -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(96,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aad -tvt -oyX -vBC -rhm -she -agj -ogK -qgr -agc -agc -kJm -lpg -kcN -yff -ufL -aic -aKq -luZ -alX -alX -avY -alX -alX -alX -vNW -pON -vRb -alX -alX -alX -avY -aIf -alX -eRu -aKq -aKz -mKq -aUk -aWW -aGr -uvt -aES -aES -aES -aES -aES -tPc -jwq -vwU -uew -rwZ -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -sGw -dvD -xzB -eWs -irJ -bKk -kil -vnY -fCG -gYg -jHt -gRP -bHB -aZQ -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGH -bHB -btO -bcm -gBU -tTC -tTC -efJ -tTC -sHe -hOV -uKH -vyr -kyP -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(97,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -cZe -kwg -cmr -cmr -jkq -agj -nCx -tYM -mqb -kDK -jMx -mXj -kcN -kcN -agj -aic -aKq -uTU -alX -alX -aqN -avY -alX -alX -paL -euV -mJu -alX -alX -avY -aqN -aIf -alX -uTU -aKq -aKz -mKq -ceK -lcy -iTw -ceK -sxD -bhJ -bHG -nis -aES -xGF -tVx -jne -rDH -nLp -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -sGw -fzx -dWJ -eWs -qSk -qlL -xVn -peH -vnY -mRH -jHt -xjK -bHB -btO -bdU -aog -bdU -bfV -baM -bkd -bdU -bfV -baM -bkd -bdU -bfV -baM -vbf -vbf -vbf -yeN -edL -ezt -xEc -baM -bcb -bHB -aYt -bcm -ohI -tTC -tTC -tTC -tTC -tml -hOV -uKH -hZZ -kyP -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(98,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aad -tvt -gJf -cmr -hYE -vAz -agj -nXO -hvH -bVs -hvH -hvH -qBq -xxh -xpi -agj -bFA -aov -wVW -arR -atO -atO -atO -awt -aqN -rKd -aAA -xMB -aqN -ays -atO -atO -cvZ -asN -wVW -aTj -aKz -mKq -bFC -vWA -cqY -ceK -aES -bpe -brS -cpj -aES -hro -tVx -tNB -ioM -rwZ -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -sGw -dvD -nsd -eWs -kqm -vnY -wjL -gpt -gKK -dBR -jHt -bwl -bHB -xyw -puI -aYt -aYt -aYt -puI -aYt -pcl -gHZ -pcl -gHZ -bHD -api -aYt -sIU -gdp -lcV -lcV -xTt -hif -flK -xyw -bcc -bHB -xyw -bcm -grT -tTC -tTC -ove -tTC -rsV -hOV -siT -bUQ -kyP -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(99,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aad -tvt -hsu -cmr -pFq -iPq -agj -dyj -fnv -bVs -xZG -kYt -mXj -ulo -kJW -agj -aic -aoA -wVW -teY -eVj -aqN -alX -asc -abk -huw -aAB -aBZ -avY -awk -alX -alX -mPn -xMA -wVW -aKo -aKz -mKq -ceK -gUL -hHl -uvt -aES -aES -aES -aES -aES -uhh -cZO -ppG -ioM -rwZ -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -sGw -dvD -kFU -eWs -osf -qxj -qxj -ddv -ctQ -wer -pKW -wqh -bHB -vpW -eXq -aho -aho -aho -eXq -kqv -pcl -bpj -pcl -gHZ -nfF -fgE -btO -btO -btO -btO -btO -qSn -sli -iuj -rOc -fVz -bHB -vpW -bcm -cKm -tTC -cOh -tTC -tTC -dPq -hOV -siT -xFt -kyP -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -"} -(100,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -bdH -aaa -aaa -aad -tvt -hJD -cmr -fFQ -pMH -agj -mXj -mXj -lul -mXj -mXj -mXj -mXj -mXj -agj -aic -aov -wVW -awA -ayr -awH -aPD -asc -azW -aqN -aAC -aCa -bPs -xUB -gkK -oug -vSl -aGH -wVW -aKn -aKz -mKq -ceK -wVB -psa -ceK -sxD -bhJ -bHG -brS -aES -jrI -tVx -raO -ioM -rwZ -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -sGw -xzB -xer -eWs -gDw -knq -vmp -vnY -ctQ -wer -pKW -wqh -bHB -xyw -aho -vWc -nCj -aEj -aho -aYt -pcl -gHZ -pcl -gHZ -pcl -fNi -aYt -xyw -vAq -hYG -aYt -gGs -aYt -aYt -aYt -jSo -bHB -xyw -bcm -qKb -tTC -xQj -tTC -tTC -uTk -hOV -siT -xFt -kyP -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(101,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aad -cZe -bLc -fOK -pWd -iPq -agj -mXj -pjR -jND -aKk -aKk -szf -faE -mXj -agj -amI -aov -wVW -wVW -wVW -wVW -wVW -rOC -soX -sKI -vHt -aCb -aDv -aEC -wVW -wVW -wVW -wVW -wVW -aKn -aKz -mKq -ceK -lcy -iTw -ceK -aES -tJi -ivf -bpe -aES -pok -tVx -kzc -gen -nLp -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -sGw -nkj -dvD -eWs -rVt -tVZ -bkS -vnY -ctQ -wer -pKW -wqh -bHB -ezQ -eXq -fAa -oYp -oZp -eXq -vvp -aYd -aMY -bqF -gHZ -pcl -oRJ -fTm -fPu -vAq -hYG -hYG -aYt -aYt -gCw -boV -xyw -bHB -aYt -bcm -jNG -tTC -vMb -xYE -iuI -lDA -hOV -siT -fFU -kyP -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(102,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -aaa -aad -tvt -nCM -cmr -wKb -pri -agj -qlI -cdB -xjt -coD -agc -ako -tYM -gLN -agj -aic -acS -wVW -asQ -awG -ayI -wVW -wbX -avY -avY -aAE -avY -wlE -gvq -wVW -lrW -mqh -vHW -wVW -ccg -aKz -mKq -ceK -rFs -gek -uvt -aES -aES -aES -aES -aES -gBd -tVx -fjz -hPu -rwZ -ajZ -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aac -aaf -aag -aag -sGw -vEI -dvD -eWs -nCe -tVZ -bkS -bfO -tWL -aLx -jHt -mVE -rgy -baN -anU -gEg -imy -gEg -dRD -bdV -bvf -tQL -bDn -bGu -bvf -fKt -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xyw -xxI -xyw -bHB -btO -bcm -bcm -bcm -bcm -bcm -hOV -pIC -hOV -qpV -nGk -kyP -aag -aag -aaf -ajY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(103,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -aaa -bdH -bdH -bdH -bdH -aaa -aad -tvt -mPw -cmr -wGa -bAy -agj -eBE -hvH -agc -rNa -pxG -fOv -agc -agc -agj -aic -sxW -wVW -jSc -atN -cEl -sOi -aqN -aqN -ixv -ixv -ixv -aDv -aqN -atP -aHR -aJI -wFn -wVW -aKn -aKz -mKq -bFC -jUb -qjz -ceK -sxD -bhJ -bHG -gCP -aES -imt -noE -dcT -hrI -rwZ -ajZ -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -sGw -oGf -dvD -eWs -plH -cDQ -qcr -xyQ -ixT -hBG -ngK -sqa -hBF -hCt -eXq -qYN -lsD -lkf -eXq -ooh -pcl -gHZ -pcl -aMY -pcl -xNb -aYt -fPu -leg -hYG -hYG -aYt -aYt -wFz -bAi -xyw -bnH -btO -cdA -lRX -rux -sEt -bcm -qyG -bUQ -bUQ -siT -bUQ -kyP -aag -aag -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(104,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -aaa -bdH -bdH -bdH -bdH -bdH -aad -tvt -qwY -cmr -cmr -mVA -agj -kSH -hvH -nTA -kWR -agc -aiW -xyk -xyk -mDX -aTl -dLe -wVW -atx -qEk -ajm -wVW -arP -alX -azZ -aAF -azZ -aIf -hkG -wVW -fvB -qEk -iaa -wVW -aKn -aKz -mKq -oKx -tVh -psa -ceK -aES -mhm -brS -bpe -aES -ioM -cZO -pfD -pfD -rwZ -ajZ -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -sGw -fzT -dvD -eWs -qmh -qmh -jHt -wSQ -rOv -wer -pKW -wqh -bHB -xyw -aho -dkj -xnZ -gYt -aho -aYt -pcl -gHZ -pcl -gHZ -pcl -uuu -fTm -xyw -lqK -hYG -hYG -hYG -aYt -aYt -bFP -xyw -bHB -btO -cdA -myo -dtH -eyR -bcm -rQs -xFt -bUQ -uKH -gsp -kyP -aag -aag -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(105,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aad -cZe -cZe -cZe -tiX -vcI -agj -ikQ -hvH -agc -qlp -pxG -tTk -agc -agc -agj -fXP -aov -wVW -atx -qEk -ato -wVW -aKF -alX -hxm -deD -tUo -aIf -aEB -wVW -fvB -qEk -iaa -wVW -aKn -aKz -mKq -aWk -aWW -aGr -uvt -aES -aES -aES -aES -aES -ied -cZO -nLp -nLp -nLp -ajZ -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -sGw -iPf -klT -eWs -vHp -gJp -qmh -wSQ -rOv -wer -pKW -wqh -bHB -vpW -eXq -aho -aho -aho -eXq -kqv -pcl -gHZ -pcl -gpi -pcl -oJp -bvf -kRP -bvf -bvf -bvf -gNx -pbg -efL -vsF -bGJ -hBF -vxb -bcm -mhd -aYt -tuN -fPn -xFt -xFt -bUQ -uKH -eLC -kyP -aag -aag -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(106,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -bdH -aaa -aad -aag -aag -cZe -cmr -iNk -agj -muV -hvH -qck -eRi -agc -tan -kDK -iEz -agj -aic -aov -wVW -ssW -qEk -hrm -wVW -rOC -aqN -tCT -tCT -tCT -aDv -aEC -wVW -dNZ -qEk -mje -wVW -aKn -aKz -mKq -aWq -aXb -aGr -ceK -sxD -bhJ -bHG -cWy -aES -hrI -tVx -nLp -aag -aag -ajZ -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -sGw -cqp -xzB -smH -vnY -asE -qmh -wSQ -vop -tgy -jHt -vPM -bHB -xyw -anW -aYt -aYt -aYt -anW -aYt -pcl -gHZ -pcl -gHZ -pcl -brY -aYt -cSx -nPB -hYG -ggh -mkN -hif -ifi -xyw -bGK -bHB -btO -cdA -omP -aYt -bOC -bcm -bUQ -xFt -bUQ -uKH -rVc -kyP -aag -aag -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(107,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aad -aag -aag -cZe -huD -vAz -agj -mXj -fnv -hvH -hvH -iNY -hvH -hmV -mXj -agj -aic -aoA -wVW -atx -jvX -ato -wVW -vTu -alX -alX -avY -alX -aIf -aED -wVW -cWw -jvX -iaa -wVW -aKn -aKy -mKq -aWt -ceK -ceK -eua -aES -eBd -brS -cpj -aES -luE -wgO -nLp -aag -aag -ajZ -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -sGw -jOq -xzB -eWs -nso -jdZ -pqM -bZS -rlD -uUf -jHt -kCm -bHB -btO -bea -aoN -bea -bfZ -baS -bkh -bea -bfZ -baS -bkh -bea -bfZ -baS -bkh -ohE -vWJ -qUL -vzX -jIM -vex -baS -bGL -bHB -aYt -cdA -ivg -llO -kSv -bcm -emC -dZZ -xmn -uKH -xFt -kyP -aag -aag -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(108,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aad -aag -aag -cZe -pcf -vAz -agj -agj -agj -agj -agj -agj -agj -agj -agj -agj -fEk -hlU -wVW -wVW -wVW -wVW -wVW -aCf -kcx -aCf -wVW -aCf -wpt -aCf -wVW -wVW -wVW -wVW -wVW -fDU -uiZ -mKq -mKq -kqt -aVX -aES -aES -aES -aES -aES -aES -hXD -tYV -nLp -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -sGw -dvD -qig -eWs -eXq -adR -eXq -aho -aho -aho -eXq -hmy -bHB -aZV -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGM -bHB -aqs -bcm -bcm -wXT -cdA -bcm -bcm -emC -emC -mTL -xFt -kyP -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(109,1,1) = {" -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -cZe -uTE -fZy -gpY -uBi -wYA -awW -awW -awW -awW -aSJ -goj -kAh -aic -aBW -aom -nmh -eco -vdL -laV -aqF -alX -alX -xQa -alX -aIf -aBS -laV -whB -gio -nmh -aKf -aKu -aKz -vjb -cZb -aXe -baw -oxu -baw -baw -oaK -nUn -pgD -tVx -hrI -nLp -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -sGw -dvD -dvD -eWs -abG -aeh -afy -xWp -aAL -aBt -ajM -aXh -bHB -aZW -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGN -bHB -xAY -gHZ -wlK -aYt -aYt -aYt -lrX -bcm -jGQ -siT -fFU -kyP -aag -aag -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(110,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -aag -aag -cZe -cmr -vAz -gpY -uac -vFw -ajf -ajf -ajf -ajf -oAO -oEf -aVW -vta -aBH -aKv -aKv -aKv -aKv -bYY -aCj -ayK -aAd -aAP -hvv -ayu -aCj -bYY -aKv -aKv -aKv -aTa -aTk -mtM -rmD -aWz -aZC -aZz -aZz -aZz -aZz -wUP -lrF -pgD -cZO -hrI -nLp -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -sGw -dvD -klT -eWs -abH -aer -agf -ais -aoL -akz -ajM -caM -bHB -aZX -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGO -bHB -xAY -gHZ -qCG -btO -btO -btO -uII -fPn -htq -siT -nGk -kyP -aag -aag -aag -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(111,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -abs -abs -abs -abs -abs -abs -abs -abs -cZe -aMf -wby -gpY -mto -acW -awW -awW -oGC -oGC -aSJ -goj -iff -bYz -aBX -rqb -aJw -aBX -aBX -laV -asc -ayL -aAf -aLM -wlE -alX -awk -laV -aBX -aKa -aJw -lLS -aKq -cPg -wPf -cZb -aXe -iVE -baw -baw -baw -sgU -baw -pgD -cyv -eKZ -nLp -tQV -tQV -tQV -tQV -tQV -tQV -tQV -tQV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aac -aaf -aaf -aag -aag -aag -aag -sGw -dvD -sZc -dGP -acq -aeJ -azl -ahV -khD -rYJ -ajM -xyw -bHB -aZY -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGP -bHB -xAY -gHZ -xJR -aYt -aYt -puI -iWx -bcm -ymg -uKH -bUQ -kyP -aag -aag -aag -aag -aaf -aaf -ajY -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(112,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -abs -adq -aeW -ajD -anM -oGC -add -aSA -bvb -afr -ajI -pYu -awW -acW -add -ryG -ohB -aiX -awd -awd -awd -awd -awd -awd -awd -awd -awd -wVW -ayv -ayM -aAj -aBI -aCk -aDK -aEG -wVW -awF -aIQ -awF -ecr -aJc -ecr -ecr -ecr -ohS -aET -nUv -aJU -aJU -sgU -baw -dqb -tiW -goL -mor -iKK -aJU -baw -mAp -mAp -lVl -pgD -tQV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -aag -aag -aag -aag -aag -aag -sGw -dvD -iQJ -eWs -acu -aeh -afF -xWp -azJ -bLP -eXq -eVm -bHB -aZV -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGM -bHB -tIS -bcm -bcm -wXT -cdA -bcm -bcm -bcm -emC -wuh -fgU -kyP -aag -aag -aag -aag -aag -aag -ajZ -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(113,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -abs -adq -aea -ajE -awW -awW -add -aSJ -awW -bZe -ajI -awW -awW -acW -qdQ -eFT -hhA -weD -unT -kng -fDV -aiX -aiX -tAL -awX -tAL -awX -wVW -wVW -wVW -lMF -jnX -rdz -wVW -wVW -wVW -cbF -aGZ -awF -cST -aTz -aUl -aET -esC -nsQ -aET -mSi -wHp -gZw -sgU -baw -baw -tiW -nig -baw -aXe -aJU -baw -baw -baw -cxk -pgD -tQV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -aag -aag -aag -aag -aag -aag -sGw -nHX -cEA -eWs -acM -aer -agf -ais -xWp -aBw -ajM -xyw -bHB -aZW -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bFR -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGN -bHB -btO -cdA -apE -icp -fER -bcm -emC -hVL -bUQ -uKH -hSb -kyP -aag -aag -aag -aag -aag -aag -ajZ -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(114,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abs -adq -aoy -awW -awW -awW -add -aoI -awW -aeZ -ajI -awW -uzy -abB -add -add -add -weD -nwL -amh -nwL -aiX -wbO -avU -avU -mKN -wEw -kOB -awZ -aiX -wLC -mGb -uOh -awF -aEM -aGV -rvA -aKE -awF -jzE -aUw -aUm -aET -aET -aET -aET -nUv -aJU -aJU -pIV -baw -baw -tiW -tTu -baw -gnv -aJU -baw -baw -baw -ciQ -pgD -tQV -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -aag -aag -aag -aag -aag -aag -sGw -xzB -hRA -eWs -acZ -aeN -azl -ahS -ajA -akz -ajM -xyw -bHB -aZX -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGO -bHB -aYt -cdA -uiT -aYt -jyR -bcm -fUZ -xFt -bUQ -uKH -eyM -kyP -aag -aag -aag -aag -aag -aag -ajZ -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(115,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abw -adr -awW -ajH -ajf -abf -aEQ -ajf -ajf -ajf -teo -abf -ajf -evX -aeZ -aka -aoI -weD -fdE -amh -amh -aiX -cJu -pXx -pXx -pXx -pXx -jrm -evg -aiX -iiU -eAx -cmS -awF -aFg -aGY -rvA -aKN -awF -cbm -aUw -aUm -aUw -aRv -pPv -aET -nPa -yhI -tTu -gVF -aZz -cts -tvw -aZz -aZz -aZz -ejY -cts -aZz -kyX -baw -gCf -trb -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -aag -aag -aag -aag -aag -aag -sGw -xzB -ghA -eWs -vhw -khD -azw -xWp -aAK -aBz -ajM -aXj -bHB -aZY -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGP -bHB -vxb -bcm -apL -aYt -iKb -bcm -umk -xFt -bUQ -siT -qBl -kyP -aag -aag -aag -aag -aag -aag -ajZ -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(116,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abw -adP -awW -acW -awW -add -add -add -stu -add -add -add -oMQ -evX -afr -akc -buc -weD -jMm -pcG -iFn -qnD -amh -kWT -wUR -wUR -wWC -auZ -aiX -aiX -qmK -oIp -pTS -awF -hRk -aGY -rvA -aKO -awF -aRx -aRx -aUo -aVi -pbp -pMj -awS -lWr -csI -goL -sgU -baw -aJU -aJU -aJU -tBu -aJU -aJU -aJU -hEV -eBe -baw -xYQ -trb -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -aag -aag -aag -aag -aag -aag -sGw -nkj -rjF -eWs -eXq -eXq -eXq -eXq -eXq -eXq -eXq -mrD -bHB -aZV -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGM -bHB -btO -cdA -uiT -aYt -xNj -bcm -hSb -xFt -bUQ -uKH -pTX -kyP -aag -aag -aag -aag -aag -aag -ajZ -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(117,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abs -adq -dpo -ajI -add -add -sgx -tyy -tyy -tyy -kxR -add -add -ajI -add -add -gqP -aiX -aiX -aiX -aiX -aiX -oqw -lvA -osT -cZV -pQV -apq -ana -aiX -gwh -oIp -qUK -awF -gyh -lmA -rvA -aqm -awF -dOl -aTA -aUp -qVC -aUw -jmP -awS -xhn -aJU -aJU -tiW -aJU -qQp -neF -pMe -pMe -pMe -fjH -aJU -aJU -tiW -msg -pgD -tQV -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -aag -aag -aag -aag -aag -aag -sGw -xzB -oes -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -aXj -bHB -aZW -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGN -bHB -btO -cdA -fpW -llO -vml -bcm -emC -rVc -rVc -uKH -nBF -kyP -aag -aag -aag -aag -aag -aag -ajZ -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(118,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abs -adq -myl -ajI -add -fsU -maq -aTm -xxB -aTm -qDM -fsU -add -ajI -add -add -add -gzI -fdE -mLz -iFn -alw -amh -dGr -rtY -fJy -xQg -wWC -szO -aiX -jkT -oIp -fNX -awF -awF -aEW -aHX -aEW -awF -aRB -qVC -wvb -eem -aUw -aUw -awS -nJs -aJU -aJU -tiW -aJU -gBW -qmC -iun -sfA -vPm -fUj -gBW -aJU -tiW -qgU -pgD -tQV -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -aag -aag -aag -aag -aag -aag -sGw -dvD -oes -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -xyw -bHB -aZX -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -baI -bGO -bHB -uAb -bcm -emC -hvx -emC -emC -emC -emC -emC -qpV -bUQ -kyP -aag -aag -aag -aag -aag -aag -ajZ -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(119,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaC -abw -aee -avd -acW -awW -hqG -jfy -aTm -cpP -aTm -hpl -ewF -awW -acW -aeZ -aka -aoI -gzI -nwL -mfQ -nPx -aiX -amd -dXY -fmB -umS -yjM -qbO -aqw -hnI -dME -oIp -oGI -waP -awF -nvG -vGI -aLp -awF -jss -aTB -aUq -aVk -ldC -vkb -aET -eFM -yhI -tTu -sgU -baw -bsg -oPi -vbB -aqB -vbB -lcp -bBF -baw -sgU -xVF -njD -trb -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -aag -aag -aag -aag -aag -aag -sGw -dvD -iQJ -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -hmy -bHB -aZL -baX -bcw -beg -bgj -baX -bks -beg -bgj -baX -bks -beg -bgj -baX -bks -beg -bgj -baX -bks -beg -bEN -baX -bcp -bHB -xAY -aYz -emC -bUQ -wDP -mHF -hhg -emC -qBl -uKH -bUQ -kyP -aag -aag -aag -aag -aag -aag -ajZ -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(120,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaY -abw -aec -avd -acW -awW -bSC -peg -aTm -cpP -cbM -xnP -nJk -awW -acW -afr -akc -xVI -gzI -aku -eGH -qnl -aiX -apt -sCI -pWN -uTN -aqy -nBE -pOD -bZa -voj -sUS -oGI -qUu -awF -aHn -szU -fGa -awF -aRC -aUw -aUw -aUw -aUw -jmP -aET -dSp -csI -goL -sgU -baw -kNo -niv -vbB -aqB -vbB -rnr -evN -baw -sgU -xVF -dLz -trb -aaC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -aag -aag -aag -aag -aag -aag -sGw -xzB -oes -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -xyw -bHB -wqh -xyw -bcc -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -aYt -wqh -xyw -bcc -bHB -xAY -aYz -emC -vFI -xFt -xFt -bUQ -wdG -xFt -siT -nGk -kyP -aag -aag -aag -aag -aag -aag -ajZ -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(121,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaY -abs -adq -tGj -ajI -add -fsU -maq -aTm -fnk -aTm -qDM -fsU -add -ajI -add -add -vmN -aiX -aiX -aiX -aiX -aiX -awq -lvA -pQV -mHO -aiX -aiX -aiX -aiX -diw -oIp -wCn -tsr -tsr -tsr -tsr -tsr -tsr -aRE -qVC -qVC -prE -aUw -aUw -awS -nJs -aJU -aJU -tiW -aJU -gBW -qmC -vbB -aqB -tBq -fUj -gBW -aJU -tiW -bpw -pgD -tQV -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -aag -aag -aag -aag -aag -aag -sGw -fzx -cEA -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -bGQ -bHB -tdc -rOc -bcx -bPr -bPr -bPr -byv -bdI -rBb -ehi -mha -kTY -ehi -mha -rBb -bdI -bPr -bPr -bPr -byv -bEO -rOc -fVz -bHB -uII -ruz -emC -jev -aML -xFt -oFn -emC -jaI -siT -xFt -kyP -aag -aag -aag -aag -aag -aag -ajZ -aaY -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(122,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaY -abs -adq -aeY -ajI -add -add -sXc -pMx -pMx -pMx -rHY -add -add -ajI -add -add -add -rwY -fdE -feS -iFn -alw -kFe -mJL -qbO -wbu -aiX -aKG -amb -aiX -hOd -oIp -qUK -tsr -sOL -jIC -lFr -wTu -tsr -aSq -aTE -aTE -aTE -aTE -jLs -awS -nJs -aJU -aJU -tiW -aJU -aJU -kLT -tGs -tGs -tGs -rct -aJU -aJU -tiW -usm -pgD -tQV -aaY -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -aag -aag -aag -aag -aag -aag -sGw -xzB -rsP -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -bGR -bHB -xyw -bkA -bkA -bkA -bkA -bkA -bkA -bkA -baZ -qOf -rIj -baZ -qOf -bqH -baZ -gfW -gfW -gfW -gfW -gfW -gfW -gfW -xyw -bHB -uII -wrT -emC -fqb -ury -dFW -mvi -emC -daF -siT -fFU -kyP -aag -aag -aag -aag -aag -aag -ajZ -aaY -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(123,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaY -abw -adP -awW -ajT -aoC -add -add -add -stu -add -add -add -awW -acW -aeZ -aka -aoI -rwY -nwL -amh -nPx -aiX -aiX -uOJ -pqc -pqc -aqz -aKH -and -aiX -aaE -oIp -dME -fyT -xIV -xIV -edV -reM -tsr -aSt -aTE -aTE -aTE -aTE -qdA -awS -tvQ -yhI -tTu -sgU -baw -aJU -aJU -aJU -nnX -aJU -aJU -aJU -baw -sgU -baw -xYQ -trb -aaY -bdH -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -sGw -sGw -sGw -sGw -sGw -sGw -sGw -dvD -iOX -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -xyw -bHB -xyw -bkA -bnj -kPx -bgk -biq -dvg -nvM -bnI -qjN -qjN -rdS -qjN -qjN -tGh -gfW -sgj -bDv -bDv -bDv -bEP -gfW -bGQ -bHB -qnd -lFp -lFp -lFp -lFp -lFp -lFp -lFp -ljm -siT -xFt -kyP -kyP -kyP -kyP -kyP -kyP -kyP -ajZ -aaY -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(124,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaY -abw -adr -awW -ajV -ajf -abf -aEQ -ajf -ajf -ajf -aEQ -abf -ajf -evX -afr -akc -buc -rwY -akv -eGH -qnl -aiX -fuz -pLW -sht -wex -aiX -aiX -aiX -aiX -qIF -oIp -aPV -tsr -iPN -dbX -rGL -cyL -tsr -aSx -aTE -aTG -aVr -aUC -tTD -aET -ngf -bAH -goL -gVF -aZz -cts -ejY -aZz -aZz -aZz -ejY -cts -aZz -nsc -ltA -gCf -trb -aaY -bdH -bdH -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -sGw -lrH -dvD -xzB -xzB -xzB -dvD -dvD -wsz -eWs -aRu -aRu -aRu -aRu -aRu -aRu -bcm -aYu -wTg -bGq -bkA -bcz -bej -bej -bej -bzS -nvM -vyu -qjN -qjN -qjN -qjN -qjN -bei -gfW -bkN -ezG -fdZ -bzg -pqi -gfW -rHw -wTg -aYu -lFp -ddw -gHl -kjD -gHl -qoL -lFp -hSb -siT -xFt -bUQ -bUQ -gQQ -bUQ -cOt -uSU -kyP -ajZ -aaY -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(125,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaY -abs -adq -aoy -awW -awW -awW -add -apg -awW -afr -add -awW -awW -abB -add -xWO -aiX -aiX -aau -aau -aau -aau -uVX -ase -sht -uOJ -aqz -mBe -atT -aiX -bhR -oIp -mYA -tsr -tsr -vOY -tsr -tsr -tsr -lIj -mVF -lIj -lIj -lIj -lIj -lIj -pgD -nUv -aJU -pIV -baw -baw -aJU -goL -baw -vpn -aJU -baw -baw -baw -ciQ -pgD -tQV -aaY -bdH -bdH -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaY -aad -sGw -xzB -xzB -dvD -dvD -sZc -abj -mUE -coo -lnu -lnu -lnu -lnu -lnu -aRu -aRu -bcm -aZZ -aYC -aZZ -bkA -bcA -bgm -bgm -bgl -bpz -biu -kdB -kdB -udr -bqL -bqL -bqL -bqL -bkz -uSS -pIU -uSS -uDA -bER -gfW -aZZ -aYC -aZZ -lFp -mgd -wfn -aId -aId -poA -lFp -hSb -uGU -kGi -kGi -khI -kGi -kGi -kow -qBl -kyP -ajZ -aaY -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(126,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -aeX -awW -awW -awW -add -aSJ -awW -bZe -add -awW -awW -acW -qdQ -muq -aiX -aiX -aau -dBs -dBs -aau -fuz -tld -uOJ -mHO -aiX -asf -atT -aiX -hOd -lSN -qUK -lIj -tBY -gkE -cTM -rqD -pcY -srO -srO -lWO -wjQ -uag -uag -jnh -pgD -lza -gZw -gVF -kuk -baw -aJU -nig -baw -aXe -aJU -baw -baw -baw -cxk -pgD -tQV -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -dvD -dvD -eWs -jri -iOX -kIl -jmz -hsK -lnu -bjZ -bjZ -bjZ -lnu -sGU -wfE -wfE -yap -bqg -eIO -bkA -eFG -bej -arX -vSG -iag -nvM -qOZ -qjN -gGJ -ham -qjN -qjN -oWf -gfW -xgJ -fdZ -bnS -fdZ -tzx -gfW -rZt -qyP -tuC -lFp -lGg -aId -aId -aId -jFx -nmY -nmY -nmY -nmY -nmY -nmY -nmY -nmY -siT -bUQ -kyP -ajZ -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(127,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -awW -awW -awW -oGC -ryG -aVL -bBl -aeZ -ryG -oGC -awW -acW -add -bny -aiX -aiX -aiX -vwV -vwV -aiX -aiX -aiX -sHM -kUh -aiX -aiX -aiX -aiX -wmo -icQ -pwl -lIj -lIj -dvZ -lIj -lIj -lIj -lIj -lIj -lIj -lIj -lIj -lIj -tWF -pgD -nUv -aJU -sgU -baw -baw -aJU -bnZ -cIe -jez -aJU -baw -baw -baw -baw -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -dvD -dvD -wfE -wfE -rXv -wfE -wfE -wfE -wfE -kox -kox -kox -wfE -bsD -btr -wfE -kLE -lIu -kLE -bkA -bcC -bej -tzO -fVG -qpQ -nvM -qOZ -qjN -sld -ham -ham -qjN -oDY -wCi -eTC -fdZ -ixj -fdZ -uey -gfW -kSA -tpB -kSA -lFp -xDF -eRS -aId -aId -tMc -nmY -ouw -jDP -aId -xHS -tEd -vjW -nmY -siT -bUQ -kyP -ajZ -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(128,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -aei -aka -aWn -gLl -gLl -gLl -gLl -gLl -gLl -oGC -awW -acW -awW -awW -awW -fSm -hiy -esQ -iKy -iKy -oyB -iKy -dME -dME -gJC -iKy -udv -iKy -iKy -gji -iKy -iKy -udv -oGW -gJC -iKy -iKy -iKy -iKy -oyB -iKy -kmT -pEY -jsP -baw -fGg -baw -sgU -baw -baw -vIo -vIo -vIo -vIo -vIo -vIo -gnv -yhI -tTu -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -dvD -dvD -wfE -mcL -jOo -wrC -mHx -pqX -evC -xbk -wFR -wFR -bmF -wFR -xbk -aWw -cJK -oGL -hOu -bkA -eUn -bcD -qpx -bet -bgu -nvM -qOZ -qjN -gGJ -ham -qjN -qjN -qyD -wCi -blZ -bqN -nTo -bqN -bwR -gfW -oJL -jMa -cVt -sHm -ddM -hZe -aId -aId -rNK -nmY -nmY -nmY -dZu -dKK -dKK -xry -nmY -siT -bUQ -kyP -ajZ -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(129,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -afr -akc -apg -gLl -mis -mis -mis -yjr -gLl -aea -oGC -xjD -ajf -ajf -ajf -oAO -pIZ -nsr -fSx -tTZ -tTZ -tTZ -dNj -tTZ -tTZ -pcs -fCW -fCW -tTZ -bjv -tTZ -dNj -dNj -ubv -plK -plK -tuX -plK -plK -plK -fSx -xFx -tFW -dGC -aZz -aZz -aZz -nsc -baw -cxk -vIo -ojX -ojX -ojX -mxo -vIo -crh -csI -qhb -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -xiH -xzB -wfE -dgl -jOo -xbk -mub -mub -mub -xbk -rkz -esM -esM -uUi -xbk -aWw -gtD -uRD -wru -bkA -hGh -hGh -bcK -hGh -hGh -bkA -vwF -nEJ -ben -qjN -qjN -qjN -hpN -gfW -omo -wkc -gfW -uFo -omo -gfW -eWx -lLO -juo -otq -gJO -pwG -aId -aId -wUK -dDM -vPR -nmY -aId -vXf -qGw -uZV -nmY -uKH -bUQ -kyP -ajZ -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(130,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -nfC -akt -awW -gLl -mis -mis -mis -mis -gLl -oGC -sHp -oGC -awW -awW -awW -aSJ -isI -gvu -xCB -nyK -llo -epT -llo -llo -pub -llo -llo -llo -llo -aVK -llo -pub -llo -llo -llo -llo -llo -epT -llo -aWM -xCB -tJm -dCD -aXe -baw -baw -baw -mnA -baw -baw -vIo -ojX -ojX -ojX -ojX -vIo -baw -sMM -rSH -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -jOq -xzB -wfE -krp -jOo -aGn -oDv -wFR -gxO -vnD -wFR -wFR -wFR -soA -xbk -wfE -xos -uRD -qPk -bCd -iey -baf -kws -vSn -vSn -mvI -lqF -qjN -gGJ -qjN -qjN -qjN -pjw -qdz -bmb -bsj -bPk -bsj -byb -bCd -knm -lLO -knm -yfy -ruL -qUZ -aId -hJI -vwY -uIA -acd -ruL -aId -kyh -dKK -xry -nmY -qpV -hNh -kyP -ajZ -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(131,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -aec -avd -akt -awW -qHq -mis -mis -mis -mis -gLl -eHX -gLl -gLl -gLl -gLl -gLl -gLl -gLl -gvu -xCB -tJm -rnN -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -rnN -gvu -xCB -kaj -vIo -vIo -vIo -vIo -vIo -vIo -xDy -vIo -vIo -ojX -ojX -ojX -ojX -eOM -baw -sMM -xVF -dLz -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -eoE -xzB -wfE -eiP -qOp -rOJ -vYm -vYm -vYm -fsp -qtv -qtv -qtv -xFZ -btx -naV -pij -kJh -qPk -bCd -tmg -qjN -qjN -qjN -qjN -qjN -qjN -qjN -gGJ -qjN -qjN -qjN -qjN -tzP -tzP -qjN -qjN -tzP -wYK -bCd -knm -lLO -knm -yfy -ruL -gsd -aId -oqt -wCk -aId -lab -ruL -aId -hgD -pSQ -dOe -nmY -rEK -bba -kyP -ajZ -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(132,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -aGP -aka -aWu -gLl -mis -mis -mis -mis -gLl -lNL -kUJ -qgn -eIf -mfL -hto -qhg -gLl -pzw -xCB -vih -aoe -aoe -jHQ -hQU -hQU -hQU -hQU -dSJ -hQU -hQU -mcW -hQU -vbS -imp -fYb -cnV -isN -aoe -aoe -hwB -xCB -tJm -vIo -giD -giD -wrI -lST -wrI -pep -mCJ -vIo -ojX -ojX -ojX -ojX -vIo -hWB -yhI -qSX -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -jIJ -xzB -wfE -fHz -opD -aGn -nTZ -wFR -lah -vnD -iRy -esM -esM -jpt -xbk -aWw -qPk -hKe -uJM -baZ -bep -qjN -qjN -qjN -cle -qjN -qjN -qjN -gGJ -qjN -qjN -qjN -qjN -qjN -cle -qjN -qjN -qjN -imo -baZ -sbE -lLO -knm -yfy -ruL -xPq -aId -vjv -gOR -aId -ary -nmY -nZm -smW -prP -xXl -nmY -idL -gnM -kyP -ajZ -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(133,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aaa -aaa -aaa -aaa -abs -adq -aGQ -akc -apg -gLl -mis -mis -mis -mis -gLl -gtI -utp -cZq -xBW -cZq -utp -gtI -kYF -dME -nbH -wpu -aoe -aoh -aor -aor -aoq -aoq -aoq -ccs -aoq -aoq -aoq -aoq -aoq -imp -gzJ -aEi -xur -coa -aoe -lXR -nbH -dME -lST -wrI -pep -pep -vIo -fzt -wrI -wrI -vIo -ojX -ojX -ojX -ojX -vIo -wvj -csI -iPH -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -xzB -dvD -sGU -iYx -opD -xbk -msZ -msZ -msZ -xbk -wFR -ldt -nEF -tXi -pcE -aWw -qPk -hKe -qPk -hqW -qjN -qjN -hDX -bei -xgh -mlH -cAF -eEk -kDR -maI -ujz -ljO -kdB -bmO -xgh -mlH -hDX -qjN -qjN -jpp -knm -lLO -knm -hnP -lFp -xlO -aId -oqt -iXA -aId -oZy -naw -npA -oqt -oEy -qmY -tUN -siT -lZb -kyP -ajZ -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(134,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abs -aee -avd -akt -qWI -gLl -gLl -gLl -gLl -gLl -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -lXR -lYS -mzn -hSI -qQc -pMp -xZt -hVz -hVz -dfa -rxc -arb -arb -arb -aEN -aor -eSN -sKa -jBy -aEi -aHa -aoe -gvu -nbH -tJm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -vIo -vIo -vIo -vIo -vIo -ehj -irS -ilJ -njD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -xzB -dvD -wfE -gww -opD -wFR -wFR -aqn -arT -xbk -jfZ -kqK -ljf -maL -uKe -aWw -qPk -ckh -gyn -vcq -qPS -qPS -qim -qPS -vln -mKw -rcx -kan -ojZ -toS -ojZ -kan -leY -tYi -uYa -bqL -iaF -bqL -bqL -ocf -wwE -sAD -cIO -tAb -vpe -dxT -olN -jDk -uNq -tOu -qyK -mkn -tHQ -uxX -oZy -orN -nmY -lQf -tHk -kyP -ajZ -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(135,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abs -adq -nAv -akt -awW -gLl -vHP -wQI -cIS -cIS -gxm -sWb -sWb -sWb -dkO -aps -aps -aps -gxm -gpp -xCB -tJm -aoe -aoe -aoe -aoe -aoe -aor -aor -aoq -aoq -aor -aor -aCw -aGW -aGW -aGW -fvd -hFF -aoe -aoe -gvu -xCB -tJm -gxm -aiJ -aiJ -aiJ -qYr -kEA -kEA -kEA -gxm -qTA -bMZ -pep -qTA -vIo -baw -sMM -noO -pgD -tQV -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -nkj -dvD -wfE -rYi -opD -wFR -wFR -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -qPk -hKe -uJM -baZ -eyQ -qjN -qjN -qjN -qjN -gGJ -bqR -vhX -gls -cAm -bwH -vhX -xqv -gGJ -qjN -qjN -qjN -bho -xtM -baZ -sbE -jZe -cbL -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -iZE -oqt -oZy -qhD -nmY -siT -xFt -kyP -ajZ -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(136,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abs -adq -aWm -aka -kyY -gLl -lfZ -lWS -gtI -gtI -gxm -sWb -sWb -sWb -vQe -aps -aps -aps -gxm -sHC -nbH -pjO -ajl -aop -koB -aRF -aoe -jkl -mNI -jkl -ayW -bqa -lFn -aLS -aGW -rSq -tsC -uRt -aQz -aRJ -ajl -gvu -nbH -tJm -gxm -aiJ -aiJ -aiJ -str -kEA -kEA -kEA -gxm -bMZ -pep -pep -osr -vIo -rQW -yhI -rRz -pgD -tQV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -xzB -dvD -wfE -cVK -opD -oRO -ren -wDr -aeL -aeL -aeL -oLj -wNG -wNG -wNG -wDr -qZT -pSF -eZC -bCd -mlH -bqR -cle -tYw -tlA -nyj -vVW -vhX -ctJ -rlZ -pGE -vhX -jCK -nyj -tlA -bwT -cle -bCe -sdO -bCd -hBW -dxJ -rdT -wDr -mQx -mQx -mQx -jsa -azy -azy -azy -wDr -kJH -oqt -qlm -kRD -nmY -uKH -xFt -kyP -ajZ -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(137,1,1) = {" -aaa -aaa -aab -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -abs -adq -afr -akc -apg -gLl -gLl -nlI -utp -usu -gxm -sRZ -sRZ -sRZ -vQe -aps -aps -aps -gxm -gvu -nbH -tJm -ajl -ajl -gzK -ajl -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aoe -aGW -anq -tsC -uRt -onQ -aRK -ajl -aUB -nbH -tJm -gxm -aiJ -aiJ -aiJ -str -jcu -jcu -jcu -gxm -cAa -pep -wrI -vIo -vIo -vpn -csI -goL -pgD -tQV -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aad -sGw -xzB -esm -wfE -wfE -viJ -wfE -wfE -wDr -aeL -aeL -aeL -uZm -wNG -wNG -wNG -wDr -qPk -hKe -qPk -bCd -bmn -knH -kan -kan -oKv -rHo -kan -kan -kan -jXf -kan -kan -kan -cbu -quT -kan -kan -iXW -iLs -bCd -knm -jZe -knm -wDr -mQx -mQx -mQx -guK -azy -azy -azy -wDr -euW -rOI -aId -hQP -nmY -qpV -bUQ -kyP -ajZ -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(138,1,1) = {" -aaa -aaa -aab -bdH -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -abw -eJU -awW -akt -awW -cUo -dwu -utp -qxS -usu -gxm -lmG -lmG -lmG -gxm -asm -asm -asm -gxm -gvu -lSN -tJm -ajl -pjF -wUd -wub -asU -ajl -ajl -ajl -mrL -rGc -yjb -ajl -sqf -dwA -tsC -uRt -fOL -aRS -ajl -sHC -xCB -tJm -gxm -alW -alW -alW -gxm -mWJ -mWJ -mWJ -gxm -bMZ -qTA -wrI -lST -aJU -baw -sMM -baw -gFd -trb -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -ajY -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -dvD -xzB -pIo -xzB -xzB -fQy -nAm -wDr -aeL -aeL -aeL -uZm -kaq -kaq -kaq -wDr -qPk -hKe -qqf -kan -kan -kan -kan -xdx -rlZ -egc -thP -beW -ygf -rlZ -fqZ -beW -bgP -psK -rlZ -cFP -kan -kan -kan -kan -tzw -sPY -knm -wDr -wQu -wQu -wQu -guK -azy -azy -azy -wDr -sJI -aId -aId -hQP -nmY -uKH -bUQ -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -aaa -aab -aaa -aaa -"} -(139,1,1) = {" -aaa -aaa -aab -bdH -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abw -eJU -awW -akt -vCt -gLl -gLl -gLl -gLl -gLl -gxm -lmG -lmG -lmG -gxm -asm -asm -asm -gxm -gvu -nbH -tJm -ajl -qhx -hbI -uGk -fFh -ajl -ajl -nHP -xNu -kgT -aCo -aEO -sqf -sqf -cXW -upM -akw -vtx -vEx -dME -nbH -tJm -gxm -alW -alW -alW -gxm -mWJ -mWJ -mWJ -gxm -vIo -vIo -vIo -vIo -vIo -nTH -sMM -baw -teg -trb -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKS -aKS -aKS -aKS -aKS -aKU -aKS -aKS -aKS -aKS -aKS -aKS -aKU -aKS -aLL -vtJ -stP -eWs -hKO -eoE -lrH -kdo -wDr -aiR -aiR -aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk -kan -mBk -oDJ -vaQ -iTt -rlZ -buu -rlZ -rlZ -rlZ -rlZ -rlZ -rlZ -rlZ -buu -rlZ -dTZ -kan -psO -gjK -kan -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr -azD -azD -azD -wDr -ePN -aId -aId -hQP -nmY -xUY -wGe -bSf -bWe -bWn -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWn -bWe -bWe -bWe -bWn -bWe -bVU -aaa -aab -aaa -aaa -"} -(140,1,1) = {" -aaa -aaa -aab -bdH -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abs -adq -aeZ -aka -aoI -gLl -mis -mis -mis -yjr -gxm -lmG -lmG -lmG -gxm -asm -asm -asm -gxm -gvu -nbH -tJm -ajl -ajl -ajl -fnA -ajl -ajl -xNu -aCo -tHl -gDS -dGo -kbn -aCo -ajl -iGA -aos -akw -txW -ajl -bgN -nbH -tJm -gxm -alW -alW -alW -gxm -mWJ -mWJ -mWJ -gxm -ojX -ojX -ojX -mxo -vIo -gnv -yhI -tTu -pgD -tQV -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -pzG -bby -aLL -aLL -frz -aLL -aLL -aLL -aLL -aLL -wDr -aiR -aiR -aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk -kan -vou -dYU -kan -cWm -soK -gDW -rlZ -rlZ -pqD -pqD -pqD -rlZ -rlZ -gYl -frl -wFb -wzZ -tdI -vbV -kan -knm -jZe -knm -wDr -ydA -ydA -ydA -wDr -azD -azD -azD -wDr -bSf -bSf -auW -bSf -bSf -ued -bSf -bSf -cml -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWo -bWe -bVU -aaa -aab -aaa -aaa -"} -(141,1,1) = {" -aaa -aaa -aab -bdH -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abs -adq -afr -akc -apg -gLl -mis -mis -mis -mis -gxm -aoz -lmG -lmG -gxm -asm -asm -asm -gxm -gvu -xCB -tJm -ajl -sOZ -oNJ -axm -eDo -ajl -pth -lgh -hsa -gXl -bfe -cUy -awj -ajl -aLZ -akw -akw -alD -gWG -gvu -xCB -tJm -gxm -alW -alW -alW -gxm -mWJ -mWJ -kbl -gxm -ojX -ojX -ojX -ojX -vIo -vpn -csI -goL -pgD -tQV -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -bbz -aLL -etF -bbS -aLL -coT -fgh -rZP -gmj -wDr -aiR -aiR -aiR -wDr -hwH -hwH -hwH -wDr -iGi -pSF -eZC -bst -bst -bst -bst -bst -bst -oou -rlZ -rlZ -tiI -hDR -oZV -rlZ -rlZ -xMj -biA -biA -biA -biA -biA -biA -hBW -ltv -uYM -wDr -ydA -ydA -ydA -wDr -azD -azD -azD -wDr -wcN -nGi -bVd -bUO -bSf -weC -tZc -bSf -cmm -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bVU -aaa -aab -aaa -aaa -"} -(142,1,1) = {" -aaa -aaa -aab -bdH -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abw -eJU -awW -akt -awW -avJ -mis -mis -mis -mis -gxm -lmG -lmG -lmG -gxm -asm -asm -asm -gxm -gvu -lSN -kaj -ajl -cnZ -akw -xsz -jTj -ajl -yjb -mNp -xgP -axm -wJo -bWi -anp -ajl -nzv -fQu -rrD -vQN -gWG -gvu -xCB -tJm -gxm -alW -alW -alW -gxm -mWJ -mWJ -mWJ -gxm -ojX -ojX -ojX -ojX -qxz -baw -sMM -baw -wiz -trb -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -bbz -aLL -fXz -bbS -aLL -uUt -aLW -aLW -guS -wDr -aiR -aiR -aiR -wDr -hwH -hwH -srR -wDr -cvg -hKe -qPk -bst -bui -bvz -bgC -xfT -bkE -bJw -rlZ -hBc -hzs -bHg -hzs -aZK -rlZ -hYn -cpJ -lQO -bsQ -bmj -caS -biA -knm -sPY -jxu -wDr -oVk -ydA -ydA -wDr -azD -azD -azD -wDr -wgR -bTO -bTO -sYP -bSf -cpk -bVd -bSf -cmm -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bVU -aaa -aab -aaa -aaa -"} -(143,1,1) = {" -aaa -aaa -aab -bdH -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abw -eJU -awW -akt -aAn -gLl -mis -mis -mis -mis -gxm -lmG -lmG -lmG -gxm -asm -asm -asm -gxm -gvu -xCB -tJm -ajl -anr -eme -tEi -asu -ajl -ajl -ijR -vtx -axm -akw -kHp -ajl -ajl -ajl -fEC -akx -ajl -ajl -evM -xCB -tJm -gxm -alW -alW -alW -gxm -mWJ -mWJ -mWJ -gxm -ojX -ojX -ojX -ojX -vIo -xuY -sMM -baw -oby -trb -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -bbz -bdy -bbS -bbS -bdy -bbS -xka -uLn -uoA -wDr -aiR -aiR -aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk -bst -bcR -bev -bgA -eas -bkE -bLr -qni -hQY -qni -qni -qni -hQY -qni -lJG -cpJ -kRd -bCl -bsz -caT -biA -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr -azD -azD -azD -wDr -hkB -bTO -qSm -cls -xoJ -weC -cls -bWc -cmm -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bVU -aaa -aab -aaa -aaa -"} -(144,1,1) = {" -aaa -aaa -aab -bdH -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abs -adq -aeZ -aka -aoI -gLl -mis -mis -mis -mis -gxm -lmG -lmG -lmG -gxm -asm -asm -asm -gxm -hwB -xCB -tJm -ajl -skl -awp -axm -jZY -wDH -ajl -ajl -sdn -axm -dDL -ajl -ajl -nMV -lhv -aBd -alE -wjz -ajl -lXR -xCB -tJm -gxm -alW -alW -alW -gxm -mWJ -mWJ -mWJ -gxm -ojX -ojX -ojX -ojX -vIo -gnv -yhI -tTu -pgD -tQV -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -pDo -aLL -aON -xYB -aLL -rlh -aLW -aLW -gxh -wDr -aiR -aiR -aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -tON -bst -bcS -bag -bgz -elE -bgv -bPz -dTZ -qxL -sYh -rlZ -dTZ -qxL -sYh -fFL -bmc -jdG -bCm -bsP -hgZ -biA -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr -azD -azD -azD -wDr -wjC -bTO -xMf -unh -bSf -weC -rfI -bSf -qzc -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bVU -aaa -aab -aaa -aaa -"} -(145,1,1) = {" -aaa -aaa -aab -bdH -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abs -adq -sSj -akc -rMh -gLl -gLl -gLl -gLl -gLl -gxm -qqa -qqa -qqa -gxm -gxm -gxm -gxm -gxm -atz -nbH -tyC -ajl -gKR -gKR -axl -gKR -gKR -ajl -ajl -ajl -fbB -ajl -ajl -kEp -tWY -sYT -pJl -akw -vIf -ajl -hwB -nbH -yeg -gxm -gxm -gxm -gxm -gxm -qqa -qqa -qqa -gxm -vIo -vIo -vIo -vIo -vIo -crh -csI -qhb -pgD -tQV -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -bbz -aLL -etF -bbS -aLL -djQ -nFs -aLW -gFa -wDr -aiR -aiR -aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk -bst -buj -bev -dBO -waD -bkE -bQM -rlZ -izY -xsw -bZn -kFv -izY -rlZ -hZN -cpJ -tni -bCn -bsz -hMN -biA -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr -azD -azD -azD -wDr -xad -roG -mZr -eax -bSf -fvN -tZc -bSf -cmm -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bVU -aaa -aab -aaa -aaa -"} -(146,1,1) = {" -aaa -aaa -aab -bdH -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abw -eJU -awW -awW -awW -wAE -iKy -iKy -iKy -iKy -tMi -lCg -knb -knb -jsd -iKy -iKy -udv -iKy -gre -nbH -dME -bVE -ans -ans -axm -ans -aGX -eto -ans -ans -axm -ans -aGX -fFO -akw -akw -akw -akw -akw -bVE -dME -nbH -kPa -iKy -gDk -iKy -iKy -gOa -lCg -lCg -lCg -ccx -iKy -iKy -iKy -iKy -wAE -mGM -baw -qYC -kwo -trb -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -aKS -bbA -aLL -aLL -frz -aLL -aLL -aLL -aLL -hrF -wDr -wDr -wDr -wDr -wDr -jXR -enK -enK -wDr -kgt -hKe -qPk -bst -aYQ -bbd -bcL -bez -bkE -bRP -rlZ -rlZ -phW -kan -eTB -rlZ -rlZ -siW -cpJ -bmi -bnT -btX -byc -biA -knm -sPY -qPU -wDr -sai -sai -wrN -wDr -wDr -wDr -wDr -wDr -bSf -bSf -auX -bSf -bSf -ued -bSf -bSf -cmn -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bVU -aaa -aab -aaa -aaa -"} -(147,1,1) = {" -aaa -aaa -aab -bdH -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abw -eJU -awW -aTm -awW -wAE -qQu -qQu -qQu -qQu -kVW -kVW -oFz -oFz -oFz -qQu -dcR -dcR -dcR -dcR -hWa -cEG -aEe -akA -kln -asw -akA -jOG -akA -akA -akA -fXg -akA -akA -akA -maT -akA -awn -oap -aSb -aEe -cEG -rxQ -dcR -dcR -dcR -dcR -qQu -oFz -oFz -oFz -kVW -kVW -qQu -qQu -qQu -qQu -wAE -ley -vbB -ley -kwo -trb -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKS -aKS -aKS -aKS -aKS -aKV -aKS -aKS -aKS -aKS -aKS -aKS -aKV -aKS -aLL -qVE -iGc -bwG -hCk -nRN -mzI -olQ -oCK -eob -gMk -qRb -axY -xrC -oWF -xrC -toQ -exl -qyX -qPk -bst -bst -bst -bst -bst -bst -cjW -rlZ -rlZ -pnC -dBH -biy -boX -rlZ -vMG -biA -biA -biA -biA -biA -biA -wHn -rDO -cIO -rEd -fml -fqU -bIO -rSA -cIm -emw -bvD -gZW -lUA -bwv -hDU -iNH -cDx -ndl -iDk -bSf -bWe -bWp -bWe -bWe -bWe -bWe -bWe -bWe -bWe -bWp -bWe -bWe -bWe -bWp -bWe -bVU -aaa -aab -aaa -aaa -"} -(148,1,1) = {" -aaa -aaa -aab -bdH -aae -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -abs -abs -awW -vGQ -ajE -wAE -dME -epT -dME -aVK -llo -llo -llo -llo -epT -llo -llo -llo -llo -aWM -lSN -tJm -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -wMO -wky -sqf -bgN -lSN -nyK -llo -epT -llo -llo -llo -llo -llo -llo -epT -llo -dME -bRO -llo -wAE -saX -dBp -gVA -tQV -tQV -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -afm -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -aKR -deq -lfx -jgK -lfx -lfx -yih -kgD -deq -bwG -vVy -gtD -vEv -cvI -cvI -cvI -aza -qPk -wKN -qPk -kan -ihw -beW -lkW -biF -vhX -akQ -rlZ -rlZ -duO -dBH -bky -ryt -rlZ -wYS -vhX -jva -tAU -xmT -tAU -kan -knm -sPY -knm -qEM -wzy -wzy -wzy -qEM -juo -seL -siC -jNw -xuy -juo -vqz -vMU -mJO -vDN -xbg -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -bVU -aaa -aab -aaa -aaa -"} -(149,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -biV -aet -biV -aet -ekY -aet -ekY -aet -abE -abE -abE -abE -abE -abE -abE -abE -abE -cXq -bXc -vZJ -vOy -nos -fcy -drT -ipQ -lZZ -vOy -oDL -nEH -vAQ -qIL -ncE -vWt -gei -vOy -ayX -kXw -pxo -sqf -lPY -bXc -vZJ -pBG -pBG -pBG -pBG -pBG -pBG -pBG -pBG -pBG -pBG -oiq -mRU -mRU -mRU -mRU -mRU -mRU -woU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -kyw -deq -lfx -bwG -aQF -aQF -aQF -aQF -szE -aQF -ihW -qOS -vEv -xkN -dwj -xkN -aza -qPk -hKe -qPk -kan -iMI -rlZ -rlZ -rlZ -qep -cnr -qqK -qqK -ayD -dBH -bky -ryt -rlZ -buu -uXf -wxq -wJb -wJb -bPu -kan -knm -sPY -knm -qEM -hEg -ewc -lLl -qEM -jvD -cBV -mJO -mJO -mJO -bTq -mJO -mJO -mJO -mgb -xbg -lyW -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(150,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acv -aiH -alf -arp -arp -aiH -aiH -aiH -aet -kPB -aci -aci -aci -aci -gwo -aed -aeG -abE -rSW -dNv -rSW -vOy -oNp -aSn -lYL -pNP -kCj -vOy -nLI -rDV -dwr -rDV -mTd -gQF -xXr -vOy -niL -kXw -pxo -sqf -rSW -dYl -rSW -pBG -rdZ -rdZ -rdZ -rdZ -bCs -pBG -rLp -ttX -pBG -vpf -mRU -vor -qnA -vkI -gNN -lyz -woU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -kyw -xwd -lfx -bwG -weR -aPE -weR -vrI -izk -aQF -aQF -aQF -aQF -aQF -aQF -aQF -aQF -mNG -pSF -eZC -kan -avW -bZn -dXr -uay -vhX -gDW -rlZ -rlZ -duO -dBH -bky -ryt -rlZ -gYl -vhX -hCS -xIk -cLA -xIk -kan -hBW -ltv -qEz -bJt -bJt -bJt -bJt -bJt -bJt -bJt -mJO -plv -plv -plv -plv -mvg -mJO -mgb -mgb -lyW -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(151,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acv -aiH -alg -bBC -bBC -aIx -aIB -aiH -aet -kPZ -acI -acj -vJZ -wfZ -adF -aef -dWw -agA -mRJ -fjA -gqH -vOy -anz -vgx -hme -mzq -qJy -vOy -vti -vti -fBO -vti -gGx -vti -lid -lJv -aCC -kXw -pxo -asn -mRJ -oEn -gqH -pBG -rdZ -rdZ -rdZ -rdZ -rdZ -pBG -jZU -jAe -pBG -jtU -mRU -tNw -ebI -ukC -jtU -fCi -woU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -kyw -deq -cGY -bwG -rUq -rUq -sab -sab -izk -pQc -cWr -jSU -lXO -eKT -wan -cTC -aQF -syj -wKN -qqf -xMs -xMs -xMs -xMs -xMs -xMs -cjW -rlZ -rlZ -wYr -dBH -quv -rZB -rlZ -wxc -vMo -vMo -vMo -vMo -vMo -vMo -tzw -sPY -hkC -bJt -xOL -gGI -eeu -gfq -eFP -gAz -mJO -plv -plv -plv -plv -plv -mJO -xbg -pgJ -lyW -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(152,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -aet -avx -ahN -uli -uli -uli -bWf -aet -lwC -aTT -acl -xxi -qJj -adF -aef -aef -uZZ -muW -lGh -bBH -vOy -awQ -oLU -thN -vDa -vOy -vOy -qfy -inL -oiY -ueJ -ueJ -oDi -trF -lJv -edv -kXw -pxo -asn -lXl -yiu -bBH -pBG -rdZ -rdZ -rdZ -rdZ -rdZ -pBG -cVq -nOb -pBG -vpI -mRU -mRU -mRU -gBs -mRU -mRU -woU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -kyw -deq -veq -bwG -pKh -sab -rDv -bmW -jWu -pQc -aqo -aRy -aRy -aRy -aRy -nIj -aQF -rWv -hKe -qPk -xMs -aSO -feY -xEz -bgn -bgw -eXb -rlZ -rlZ -kSC -kan -oRy -rlZ -rlZ -hAU -xqy -bmk -wZE -iGn -byd -vMo -knm -sPY -knm -lhB -pOY -bDs -jge -bDs -bDs -hLC -mJO -plv -plv -plv -plv -plv -mJO -xbg -mgb -lyW -ajZ -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(153,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -aet -avV -uli -uli -uli -mov -bWq -aet -lhX -aXc -acl -jlN -qqn -adF -bls -aeH -agq -ijd -efV -bBH -vOy -hng -dnC -hPN -vCk -qEn -qam -riE -gAS -lMv -dVu -eSo -qmD -aIC -lJv -aCt -kXw -pxo -asn -lXl -poD -qmW -pBG -rdZ -rdZ -rdZ -rdZ -rdZ -pBG -dzp -ngV -pBG -jtU -jtU -uBx -fLi -vpf -prf -vpf -woU -aaa -aac -aaf -aaf -aaf -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -bdH -aad -kyw -deq -deF -bwG -mTi -lJK -kYV -hhn -aQp -aQG -ulZ -aRA -aRA -bQU -bQU -bjD -dqE -htl -vaq -vTX -xMs -lOH -dUS -bcP -dSX -bgw -fbw -rlZ -rlZ -thP -beW -bgP -rlZ -rlZ -rFH -xqy -aGg -bof -vit -dxu -vMo -knm -sPY -knm -lhB -xCb -bDs -bIJ -bDs -bDs -qJS -mJO -plv -plv -plv -plv -plv -mJO -xbg -xbg -lyW -ajZ -aaa -avo -avo -avo -avo -avo -avo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(154,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acv -aez -uli -aIx -uli -uli -mov -bWq -aet -lhX -eYM -uuR -dHu -qqn -adF -aef -kqN -agA -lXl -qdJ -qmW -vOy -xyt -wiW -tOr -dBj -wei -kBP -kBP -jsx -tjn -aCC -kXw -pQP -qAT -vOy -vOy -mFq -vqW -sqf -rnM -poD -bBH -pBG -pBG -pBG -pBG -nec -pBG -pBG -saL -pBG -pBG -mRU -mRU -mRU -mRU -mRU -jtU -vpf -woU -aaa -aad -aag -aag -aag -aag -aaf -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -bdH -aad -kyw -deq -oWq -bwG -aQF -aQF -aPH -xIQ -tmX -pQc -rrK -aRy -feI -brb -cpp -buv -aWF -qPk -hKe -qPk -xMs -akE -qGF -bcV -bgr -bgy -fxZ -rlZ -aZK -pqD -pqD -pqD -hBc -rlZ -pKZ -bmd -bnR -ggz -dka -bye -vMo -knm -sPY -knm -lhB -aQW -bDs -bNw -wIG -wLK -hAz -bJt -bJt -bJt -bJt -bJt -bJt -bJt -xbg -otW -lyW -ajZ -avo -avo -avs -avs -avs -avs -avo -avo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(155,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acv -aez -uli -uli -uli -uli -uli -aiH -aet -lhX -acl -acl -acl -qqn -aef -aef -tRD -abE -tkF -qdJ -bBH -vOy -iYf -bIM -wPz -iUo -qAE -xqp -lzA -vkp -tjn -aCC -kXw -vtm -emK -fGu -hPe -sdu -btC -vLj -ijd -efV -bBH -rRT -pBG -gqQ -cHG -nQA -kST -pyx -lKO -pBG -lEf -gel -gel -gel -fkX -mRU -jtU -tMU -woU -aaf -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -kyw -xwd -lfx -bwG -weR -aPE -izk -xIQ -vse -aQF -blp -aRy -aTn -aTY -iCF -gJP -aQF -uNf -hKe -qPk -xMs -aYR -dUS -mqU -bgs -bgw -icw -qni -klH -vYt -fDj -eBZ -klH -qni -uah -xqy -jhn -jZd -vit -bzo -vMo -knm -sPY -knm -lhB -pxD -bDs -gSk -bDs -bDs -bDs -xjb -fbo -duo -iIl -bDs -ujV -bJt -xbg -xbg -lyW -ajZ -avo -avs -avs -hAG -vtr -avs -avs -avo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(156,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -ahy -avZ -ipK -ipK -ipK -uli -bWf -aet -lhX -acl -acl -acl -qqn -adF -aef -afs -agA -lXl -yiu -bBH -vOy -mTp -wiW -wPz -jeq -eYU -wWR -vti -vkp -cfT -hec -gNp -hVf -dVu -rmc -lON -dVu -oDR -vOP -muW -cDI -tru -uXE -qvL -wmP -wmP -dRP -bUn -nQA -eAN -nGD -rfb -jiH -rLU -dKp -cHu -mRU -jtU -vpf -woU -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -kyw -deq -sJa -bwG -pGG -sab -izk -hds -aQF -aQF -haQ -aRy -boY -qZH -bsN -buB -aWD -qPk -hKe -qPk -xMs -bXw -eiw -bda -bgt -bgw -jxi -rlZ -rlZ -tgV -tgV -tgV -rlZ -rlZ -nrN -xqy -nYD -boh -qDP -wbP -vMo -knm -sPY -cbL -bJt -qom -bDs -rAx -jFE -fuS -jFE -jFE -jFE -jFE -idx -hAz -gHj -bJt -oqI -xbg -avo -avo -avo -avs -rKn -awa -awa -umm -avs -avo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -aet -aIx -ipK -ceC -eRR -uli -bWq -aet -loV -acK -acm -acK -esK -adD -sOw -afs -agA -lXl -yiu -bBH -vOy -axn -dRh -ydE -bST -rQy -vOy -vdO -vkp -aoM -kBo -chc -naR -vOy -hrn -vOy -aRd -aIo -vOy -whc -yiu -bBH -mxq -pBG -lvb -eAN -jVg -jCe -xCf -eAN -nGD -rLv -bHk -vZw -bHk -cHu -mRU -vpf -mRU -woU -aag -aag -aag -aag -aag -aag -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -kyw -lfx -deq -jgK -aNs -aNs -hyw -mzz -aQF -aQF -blj -aRy -bpa -fHF -bml -buB -aWD -eZC -pSF -eZC -xMs -xMs -xMs -xMs -xMs -xMs -jGn -rlZ -ggJ -oXY -bZn -kFv -dut -rlZ -sPJ -vMo -vMo -vMo -vMo -vMo -vMo -hBW -ltv -kGw -bJt -bJt -nFI -qdk -vzP -bJt -hjB -bJt -xfK -bDs -gSk -bDs -bpI -bJt -jLH -xbg -lpy -avC -avC -wEg -axa -axa -dSZ -oMs -avs -avo -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(158,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -aet -uli -ipK -awe -fwD -uli -oGy -aet -lhX -acl -acl -acl -qqn -adF -aef -afs -agA -lXl -yiu -bBH -vOy -aAr -pGK -tpa -tpa -tpa -vOy -dHV -vkp -jUM -lou -eBO -pRn -vOy -ayZ -aCD -hFC -qmy -vOy -lXl -yiu -bBH -pBG -pBG -hEl -eAN -qfP -tbk -neT -eAN -nGD -nHp -vzp -vZw -erd -cHu -mRU -vzB -mRU -woU -aag -aag -aag -aag -aag -aag -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -kyw -txp -iGc -bwG -vMr -vMr -izk -uhl -aQF -aQF -blf -aRy -kkt -htL -aUL -buB -aWD -qPk -hKe -qPk -nyw -iXU -hDw -kzb -pha -kan -kan -mwM -wmQ -kan -kan -kan -mwM -eRy -kan -kan -rIO -vEH -uFH -tQd -nyw -knm -sPY -knm -yfS -sEi -dck -quV -doJ -loY -tOW -lkd -dYR -bDs -gSk -reL -wiI -bJt -tqV -dSm -avo -avo -avo -avs -awa -awa -awa -qUp -avs -avo -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(159,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -aet -avx -ipK -ipK -ipK -uli -bWq -aet -lhX -acl -acl -acl -qqn -aef -aef -pHG -abE -tkF -poD -bBH -vOy -aID -gLc -mKx -iit -kZV -vOy -vOy -jpl -vOy -wKL -vOy -vOy -vOy -qqQ -aoM -aoM -vgB -kgs -lXl -poD -bBH -bvX -ojQ -eAN -eAN -jVg -nQA -nQA -eAN -nGD -rfb -bHk -vZw -bHk -cHu -mRU -vpf -mRU -woU -aah -aag -aag -aag -aag -aag -aag -ajZ -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -kyw -cme -whm -bwG -mTi -lJK -izk -xIQ -vyp -aQF -blw -aRy -aTr -aTZ -aUM -gJP -aQF -rmz -wKN -qPk -nyw -beH -dcd -beH -bqZ -beH -neS -beH -beH -tJR -rRU -oEw -beH -beH -neS -beH -bqZ -beH -beH -beH -nyw -knm -sPY -knm -yfS -hgL -swt -wSX -wpI -ktX -smi -lkd -tsa -bDs -gSk -bDs -vwI -bJt -lAa -mgb -lyW -ajZ -avo -avs -avs -loK -wpg -avs -avs -avo -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(160,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -acv -aez -uli -uli -uli -uli -uli -oWz -aet -lhX -gsZ -uxO -bTt -qqn -adF -aef -aGS -agA -lXl -poD -bBH -vOy -aMd -pGK -pRX -mHD -pRX -vOy -jFf -vkp -jrM -mWs -lmw -vOy -dyb -tsM -prx -fpT -eVT -kgs -lXl -poD -bBH -bvX -kVV -vQR -vQR -epJ -jML -jML -mWp -nGD -rLv -pRy -wwW -mRW -cHu -mRU -jtU -vpf -woU -aaa -aad -aag -aag -aag -aag -aah -afm -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -kyw -cGY -ipn -bwG -aQF -aQF -sPc -xIQ -sab -pQc -olM -aRy -aRy -eXr -iFH -buv -aWE -qPk -ckh -htl -aum -emr -emr -emr -uNB -quq -duv -beH -beH -beH -bqZ -beH -beH -beH -fcf -beH -pmH -rCO -rCO -rCO -eVv -wwE -mDZ -knm -ykj -rlQ -ven -agH -wxU -tvM -smi -lkd -rBj -bDs -gSk -bDs -fUB -bJt -mgb -nhw -lyW -ajZ -avo -avo -avs -avs -avs -avs -avo -avo -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(161,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -acv -aez -aIB -aKg -uli -uli -mov -bWq -aet -lhX -kNO -acl -jlN -qqn -adF -aef -nIS -uZZ -muW -poD -bBH -vOy -aMg -aSo -pRX -mHD -tzL -vOy -vqZ -vkp -rDr -usy -nDo -vOy -glB -vkp -ger -aoM -aFf -mmN -lXl -poD -bBH -bvX -maO -lPm -iZV -fdx -cuq -eQJ -fVF -pBG -qWR -wJH -wJH -wJH -sNR -mRU -jtU -vpf -woU -aaa -aae -aah -aah -aah -afm -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -kyw -oif -deq -bwG -weR -aPE -izk -uhP -aQq -aQH -upO -pOi -pOi -pOi -pOi -nVF -aWF -qPk -wKN -qPk -nyw -eGZ -ieX -pfM -bqZ -rEf -rWT -emr -emr -usX -vKe -rCO -rCO -rCO -vVd -eBg -wRT -bhq -dcd -eTd -nyw -knm -rDO -hqp -kKk -rDt -gpI -xwp -fLg -tvM -dfC -cEi -bJt -oKb -gSk -bDs -nqO -bJt -nQo -pgJ -lyW -ajZ -aaa -avo -avo -avo -avo -avo -avo -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(162,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -acf -aet -aJJ -aIB -uli -uli -mov -bWq -aet -lwC -tIK -acl -sNO -qJj -adF -aef -nIS -eWF -muW -poD -bBH -vOy -aQZ -bkT -pRX -mHD -pRX -vOy -foP -sZy -vEr -irU -bVe -vOy -ggl -jjS -qMP -kBP -kqo -vOy -tkF -poD -qmW -pBG -pBG -pBG -pBG -qRr -pBG -pBG -pBG -pBG -pBG -mRU -mRU -mRU -mRU -mRU -jtU -tMU -woU -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -kyw -byt -lfx -bwG -iWQ -iWQ -uFd -mUq -qwt -pQc -bng -bmX -bmX -tou -tou -jhy -aQF -eZC -hMk -mkw -bdd -bdd -bdd -bdd -bdd -qCc -fUA -beH -spF -uBN -bqZ -jMr -eGZ -beH -fUA -qYZ -bdd -bdd -bdd -bdd -bdd -xwm -ltv -hBW -yfS -ape -ven -njJ -kiM -tvM -smi -lkd -kvU -idX -cnu -bDs -knK -bJt -xbg -oUZ -lyW -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -acf -aet -avx -ahN -aIB -aKg -uli -bWf -aet -abK -acL -acn -cRK -dXV -adF -aef -kqN -agA -lXl -yiu -bBH -vOy -dVd -lea -hKl -lDN -kZV -vOy -vOy -eNI -eNI -eNI -vOy -vOy -hRa -vti -vti -vti -aEZ -vOy -lXl -yiu -bBH -fKh -gQk -trU -oNY -fdx -pBG -pVF -ppF -ojp -pBG -jtU -jtU -uBx -ycM -vpf -jtU -vpf -woU -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -kyw -jNo -lfx -bwG -iWQ -iWQ -sab -aNr -pQY -pQc -bll -bll -bpo -dVO -bsR -aQr -aQF -qPk -wKN -qPk -tda -ngI -dkq -lRZ -acc -beH -beH -dwl -bdd -bdd -gac -bdd -bdd -aMt -beH -beH -acc -qby -btY -bAJ -huU -knm -sPY -knm -yfS -ape -ven -bWT -fKV -tvM -smi -lkd -qTY -bDs -gSk -ljG -tSp -bJt -xbg -ssk -lyW -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(164,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -acv -aiH -uli -bLO -bLO -bLO -bLO -aiH -qga -eAU -eAU -eAU -eAU -eAU -fcE -aef -uNN -abE -dfA -yiu -bBH -vOy -vOy -vOy -mSK -mSK -mSK -vOy -vOy -voV -wKP -hLr -vOy -vOy -rhO -pgM -nPE -oqZ -uaI -vOy -hUu -yiu -bBH -fKh -iuG -sOv -eAN -fdx -gAk -dzp -rMT -dzp -pBG -jtU -mRU -mRU -mRU -mRU -vpf -mRU -woU -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -kyw -deq -lfx -bwG -mTi -lJK -mTi -lJK -kmp -aQF -bln -xEX -aQF -aQF -aQF -aQF -aQF -ldb -rYI -fzc -bdg -vyg -bni -cwX -vuA -nVi -nVi -nVi -vuA -tab -udi -wCs -vuA -nVi -nVi -nVi -vuA -snb -xbd -bAU -bdg -jlD -pYN -raE -bJt -wbC -lHu -oiL -qBM -wXI -nUd -lkd -xOT -bDs -gSk -oDE -bJt -bJt -xbg -mgb -lyW -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(165,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acv -aiH -aiH -bWd -awi -bWd -mOb -aiH -aet -aBD -acU -uPr -sTd -lfH -aeI -eva -xzf -abE -tkF -poD -dSI -iLL -gqH -vOy -vOy -vOy -vOy -vOy -vOy -eNI -eNI -eNI -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -qQD -poD -bBH -fKh -ubI -nQA -nQA -jvM -pLa -nTR -gDp -rwq -pBG -jtU -mRU -oyO -nve -mRU -vzB -mRU -woU -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aad -kyw -xbI -lfx -bwG -aQF -aQF -aQF -aQF -aQF -aQF -aQF -aQF -aQF -wYG -yhR -gHi -bwG -pzj -uhq -pzj -bdg -apz -dyd -fyD -bdd -dhR -dhR -dhR -vuA -eYu -qaW -wbN -vuA -lVS -lVS -lVS -bdd -vPw -bvr -bBQ -bdg -sgL -aRL -sgL -rde -vjC -iMm -mJi -iMm -iMm -mkc -bJt -xaN -bDs -gSk -luS -bJt -uCw -xbg -mgb -lyW -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(166,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vHn -cGd -moK -cGd -cGd -aNi -aNi -bWr -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -hUu -poD -tsn -tsn -bBH -vOy -elR -xXh -xXh -xXh -dMK -aCR -aAT -aNY -elR -xXh -xXh -xXh -dMK -vOy -vOy -vOy -lXl -poD -bBH -pBG -mGT -nQA -nQA -vEG -pBG -pBG -pBG -pBG -pBG -jtU -rXF -jtU -vzB -mRU -kuK -mRU -woU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -aad -kyw -deq -deq -bwG -tEu -mUY -vOw -ouU -dro -bwG -gSH -xJp -qxJ -hCk -deq -nRN -bwG -wsS -vxY -wsS -bdg -auj -bbf -ber -vuA -nVi -nVi -nVi -vuA -jkz -ngI -xGJ -vuA -nVi -nVi -nVi -vuA -bpv -tMW -bBY -bCh -mPM -esd -mPM -yfS -xML -iMm -jSy -wGb -iMm -rjn -bJt -wUX -bDs -gSk -vSp -lHG -kOJ -mgb -mgb -lyW -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(167,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aac -aaf -aaf -aaf -aaf -aaf -aaf -aaf -vHn -ejV -hoT -hoT -vyh -aNi -cYT -aNm -cYT -noH -mIo -vif -bhx -aOR -bhx -vif -aOR -bsw -lXl -hPZ -bPi -ava -bBH -vOy -wWz -vHO -ruc -uvP -wTM -dNq -vVs -aFa -wWz -liY -ruc -xOY -wTM -vOy -uWk -iLL -lRh -poD -qmW -pBG -tGT -nQA -nQA -jDO -pBG -aYH -cHG -cOY -pBG -mSM -mRU -gRc -oOp -mRU -jtU -vpf -woU -aaf -aaf -aaf -aaf -aaf -aaf -aaf -ajY -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aac -kyw -kyw -kyw -kyw -kyw -kyw -kyw -kyw -deq -caq -bwG -igb -cpz -ooA -kpj -sBY -wyG -qjL -kpj -rAo -lka -kpj -kpj -mQY -ygp -tdi -fZE -tda -mng -wTm -wCI -acc -beH -beH -beH -acc -mng -wTm -wCI -acc -beH -beH -beH -acc -mng -wTm -wCI -tda -oSM -ter -oSM -bJt -swE -wpI -ocm -wpI -wnL -kHd -bJt -hSw -qxE -rui -vSp -bJt -uXU -xbg -nhw -lyW -lyW -lyW -lyW -lyW -lyW -lyW -lyW -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(168,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -aag -aag -aag -aag -aag -aag -vHn -dGg -tob -hoT -tob -aNi -aZe -aNm -aNm -lRP -idH -bhx -bhx -hMi -aco -aco -dYu -bsw -cOe -vwT -akh -poD -qmW -vOy -wWz -anw -wLy -jlG -aqP -kCE -wLN -npt -xuE -hqh -wLy -eiE -wTM -vOy -lXl -mfO -mHY -yei -bBH -fKh -eYn -nQA -nQA -vEG -mlP -eAN -eAN -eAN -pBG -vpf -mRU -mRU -mRU -mRU -vpI -vpf -woU -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -kyw -kyw -hCk -maK -lfx -lfx -lfx -deq -deq -deq -lfx -eYp -lfx -vmq -cqH -tjO -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -nhE -naa -nVQ -bdd -vuA -vuA -vuA -bdd -qCc -fUA -qYZ -bdd -vuA -fnx -vuA -bdd -qCc -fUA -qYZ -bdd -vuA -vuA -vuA -bdd -fvV -ter -gvK -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bJt -cDC -vuF -bJt -bJt -xbg -mgb -mgb -mgb -gLm -ttD -mgb -mgb -mgb -lyW -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(169,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -aag -aag -aag -aag -aag -aag -vHn -oSG -tob -tob -tob -aNi -aZr -aNm -aNm -lTE -idH -bhx -bhx -aOR -bhx -bhx -cCa -aNi -aNi -aNi -rnM -qdJ -bBH -vOy -wWz -ovG -gxP -aPJ -wTM -apS -wse -aFa -wWz -ual -gxP -aOe -wTM -vOy -piQ -yiu -xIj -xIj -bBH -fKh -wvo -nQA -nQA -vEG -pBG -skR -oxc -nBi -pBG -vzB -mRU -pGh -xEs -mRU -jtU -tMU -woU -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -kyw -xJp -lfx -deq -yih -deq -deq -lfx -lfx -lfx -rHq -bwG -nPO -cGB -ugj -fbC -bdd -uvU -xZk -dGU -lgF -eYj -aSp -mho -bdg -fZE -iLm -fZE -bdg -bqZ -bqZ -bqZ -bCg -beH -fUA -beH -bCg -bqZ -beH -bqZ -bCg -beH -fUA -beH -bCg -bqZ -bqZ -bqZ -bdg -oSM -xub -oSM -bdg -lCE -oZD -lwh -oPz -lCE -xLi -qkY -bdd -qXo -feq -loY -aDU -bJt -vAx -mgb -xbg -mgb -xpL -mgb -mgb -xbg -xbg -mgb -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(170,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -aag -aag -aag -aag -aag -aag -vHn -oeH -tob -hoT -tob -aNi -aZs -aNm -aNm -mwL -idH -bhx -bhx -aOR -bhx -bhx -qiy -ahR -ahR -egt -shC -vIZ -bBH -vOy -woh -vgO -aoJ -alk -xAe -avH -wse -cXC -woh -pLO -qxm -vgO -xAe -vOy -psk -poD -sin -vwT -gsJ -fKh -lDa -eAN -eAN -vEG -pBG -pBG -pBG -pBG -pBG -vpf -tra -vpf -vzB -mRU -iJT -vpf -woU -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -kyw -deq -lfx -nsY -nsY -pRT -nsY -nsY -nsY -nsY -nsY -nsY -bwG -bwG -msC -bwG -bdd -xwE -dAQ -tGG -kEs -tGG -bpA -mho -bdg -fZE -naa -fZE -bdg -bqZ -beH -beH -beH -beH -fUA -beH -beH -beH -beH -beH -beH -beH -fUA -beH -beH -beH -beH -bqZ -bdg -oSM -ter -oSM -bdg -lCE -uek -dkX -qXp -oCl -tPm -kiX -bdd -tLc -rsM -iMm -hTT -nsY -nsY -nik -nsY -nsY -nsY -nsY -nsY -nsY -kqb -mgb -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(171,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -aag -aag -aag -aag -aag -aag -vHn -mId -hoT -hoT -hoT -aNi -jWr -aNm -jWr -nzi -rfe -bhx -bhx -wWg -aco -aco -hpY -aOR -aOR -bgK -muW -qdJ -bBH -vOy -vOy -vOy -uqd -amk -pYo -avF -coJ -iAz -cQo -aIP -aoK -vOy -vOy -vOy -pLE -poD -bBH -mRU -mRU -pBG -aGs -eAN -eAN -vEG -vrJ -xOs -kOH -hIs -pBG -mSM -mRU -tCd -vpf -tra -vpf -mRU -woU -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kyw -lfx -deq -nsY -xWT -kxd -jgk -nsY -rSG -rur -oqS -nsY -hsh -cPP -deq -eLH -bdd -eUZ -lCr -lCr -fwM -tGG -lJD -mho -bdg -fZE -naa -fZE -bdg -bqZ -beH -aLJ -bmr -beH -beH -beH -gZV -nul -ufh -nfa -bhH -beH -beH -beH -rJK -gBo -beH -bqZ -bdg -oSM -ter -oSM -bdg -lCE -fMe -sNI -jmn -sgD -kUR -vMM -bdd -hxZ -rsM -iMm -gzV -nsY -xWT -kxd -viu -nsY -rSG -qkP -oqS -nsY -mgb -mgb -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(172,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -aag -aag -aag -aag -aag -aag -vHn -eDq -jFI -cGd -moK -aNi -aNi -aNi -aNi -aNi -aOR -eVQ -aOR -aOR -aOR -eVQ -aOR -aOR -agr -aNi -lXl -lGh -bBH -vOy -vOy -vOy -vOy -vKb -rzN -avG -jbK -aOd -sXd -aJn -vOy -vOy -vOy -vOy -mIR -lGh -bBH -mRU -vpf -pBG -xiU -xUa -eAN -liM -pBG -pZH -nnL -lgt -pBG -vpI -mRU -bhV -jtU -mRU -vzB -mRU -woU -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kyw -lfx -deq -nsY -xWT -kxd -viu -nsY -iIP -kxd -dDt -nsY -exb -deq -deq -qLY -bdd -ljW -bDP -lCr -ijr -lCr -mpn -pZR -bdd -atH -iEM -atH -bCx -bqZ -beH -bgO -boq -boq -boq -boq -jgu -pVB -hsg -iPv -qTw -uMk -uMk -uMk -uMk -bgO -beH -bqZ -bCx -oSM -ter -oSM -bdd -tSF -lsn -kUR -kUR -mkl -gXB -car -bdd -hTf -rsM -oos -sBL -nsY -xWT -rfT -viu -nsY -dmR -kxd -dDt -nsY -mgb -xbg -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(173,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aad -aag -aag -aag -aag -aag -aag -aag -vHn -cGd -cGd -cGd -iTQ -lWt -eDq -eDq -eDq -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -aNi -pLE -lGh -bBH -bPF -aqG -ata -vOy -apR -aqS -mnW -nPf -vYz -awR -uoi -vOy -jyJ -niF -bPF -tkF -yiu -bBH -mRU -vpf -pBG -pBG -pBG -qIx -pBG -pBG -pBG -pBG -pBG -pBG -jtU -mRU -mRU -mRU -mRU -vpf -mRU -woU -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kyw -lfx -deq -nsY -gsg -vHq -vvY -nsY -rNb -bxC -jiU -nsY -jvt -hiu -deq -vSr -bdd -asr -asr -asr -mki -nYp -fZG -phd -pmv -mzv -yfg -fZE -nyw -bqZ -beH -bgO -boq -boq -boq -boq -jgu -vBp -kNl -nhi -qTw -uMk -uMk -uMk -uMk -tmB -eBg -vKe -eVv -cVZ -xdf -cVZ -hLS -vKe -vKe -uSH -uwt -rLP -pPA -ycx -bdd -hTf -rKO -wGb -gUf -nsY -gwM -bxC -pJD -nsY -iSm -bxC -jiU -nsY -mgb -xbg -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(174,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -hoT -tob -tob -hoT -tob -tob -hqm -hoT -tob -tob -tob -tob -hoT -vyh -hoT -tob -tob -fkK -muW -lGh -muW -cbg -aqG -atb -vOy -xSY -rzN -lCt -lto -paa -sXd -gVq -vOy -sLk -niF -cbg -muW -yiu -muW -rXF -jtU -jtU -vpf -ycM -tne -jtU -jtU -vpf -ycM -vpf -jtU -jtU -jtU -uBx -fLi -jtU -vpf -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaf -kyw -lfx -deq -nsY -nsY -qxC -nsY -nsY -nsY -ntx -nsY -nsY -qWL -kIk -eXD -kMr -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -fZE -iLm -fZE -bdg -bqZ -beH -bgO -boq -boq -boq -boq -jgu -vBp -hWs -nhi -qTw -uMk -uMk -uMk -uMk -bgO -beH -bqZ -bdg -oSM -xub -oSM -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -tuo -rsM -oos -gUf -nsY -nsY -iFM -nsY -nsY -nsY -gLZ -nsY -nsY -mgb -nhw -lyW -aaf -aaf -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(175,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -dxF -dxF -aaH -aam -aam -aam -aam -aam -aam -aam -gxm -hgk -tob -njn -njn -njn -njn -njn -njn -njn -njn -njn -njn -njn -aej -aej -aej -aej -aej -gpT -lGh -cQF -vOy -vOy -vOy -vOy -msi -kDk -kbJ -cJM -jlA -qLi -dEm -vOy -vOy -vOy -vOy -xac -yiu -vbU -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -nIN -jtU -vpf -gxm -aeT -aeT -aeT -aeT -aeT -aeT -aeT -nnD -aZF -aZF -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aad -kyw -kyw -kyw -deq -caq -nsY -tUS -bNh -wNl -nGh -fPp -lqN -vlO -nsY -xxG -smA -ktR -lfx -bdd -dJI -jaf -kwc -ebp -mPR -osU -vKe -dYX -mzv -xhW -fZE -bdg -bqZ -beH -bgO -boq -boq -boq -boq -jgu -pUA -wga -mfM -qTw -uMk -uMk -uMk -uMk -bgO -beH -bqZ -bdg -oSM -iOo -cVZ -iUk -cIx -fUC -vKe -sDA -kWN -tln -bko -bdd -hTf -wRO -iMm -gUf -nsY -aaq -wHj -qdv -uQo -iQt -uZo -xmJ -nsY -xbg -mgb -lyW -lyW -lyW -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(176,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -dxF -dxF -aaH -aam -aam -aam -aam -aam -aam -aam -gxm -bLf -tob -njn -rWz -rWz -rWz -rWz -rCZ -rWz -rWz -rWz -rWz -rCZ -aej -aeO -afG -ags -aej -lXl -lGh -bBH -vOy -elR -xXh -xXh -apU -taH -aBe -otu -jBO -jNc -ean -xXh -xXh -dMK -vOy -lXl -yiu -bBH -nIN -iIb -wui -iIb -nIN -rgL -rgL -rgL -rgL -lAW -rgL -rgL -rgL -rgL -lAW -nIN -jtU -nVE -gxm -aeT -aeT -aeT -aeT -aeT -aeT -aeT -nnD -aZF -aZF -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -kyw -veq -deq -deq -lfx -nsY -kio -sJY -qJY -qLH -xTW -oGP -cnM -nsY -kqB -txH -txH -deq -bdd -fva -lkL -mBO -cHB -cHB -hDV -vmP -bdd -fZE -iLm -fZE -bdg -bqZ -bqZ -bgO -beH -beH -duv -beH -qma -dqr -xSA -hir -nKn -beH -duv -beH -beH -bgO -bqZ -bqZ -bdg -oSM -xub -oSM -bdd -oNP -tge -yjU -yjU -yjU -tEC -bko -bdd -gKB -rsM -oos -gUf -nsY -mKJ -deT -uAC -rhQ -pyc -uMn -ivz -nsY -xbg -mgb -xbg -xbg -lyW -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(177,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -dxF -dxF -aaH -aam -aam -aam -aam -aam -aam -aam -gxm -rGz -tob -njn -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -aej -aeP -agI -aia -yaz -muW -qdJ -bBH -vOy -wWz -vHO -uXj -uXj -iwJ -jVt -uyH -vHO -iwJ -uXj -uXj -rdt -wTM -vOy -lXl -poD -bBH -aQx -xzh -sjM -oIn -nIN -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -nIN -jtU -bWg -gxm -aeT -aeT -aeT -aeT -aeT -aeT -aeT -nnD -aZF -aZF -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -lHB -lfx -lfx -lfx -lfx -heK -kam -axc -juD -twW -vHh -pvh -sZs -nsY -bwG -erL -scX -caq -bdd -cDH -cHB -scN -vvw -wmz -rhy -rec -bdg -fZE -naa -onn -bdd -bdd -bDQ -bgO -vGG -vGG -bgO -xRJ -xRJ -xRw -bPO -whA -xAt -xAt -bgO -gAj -gAj -bgO -cab -bdd -bdd -tmE -ter -oSM -bdg -jLS -xdP -gAj -dBI -sMu -eYF -vMM -bdd -sOt -cNX -cdI -sBL -nsY -eiN -dVs -tat -kNC -xuQ -uPW -kYv -oDx -sAS -sAS -sAS -rCh -xbg -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(178,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -adj -apk -apk -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -hqb -vsd -njn -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -aej -aeQ -agK -agu -eup -muW -qdJ -bBH -vOy -wWz -uwZ -wWm -jQt -nwi -sNz -uyH -uwZ -kGQ -jQt -coZ -sNz -wTM -vOy -lXl -poD -bBH -aQx -bcg -bkM -gYp -nIN -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -nIN -jZo -hQK -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -asM -asM -mwR -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -eqm -lfx -vvH -bwG -bwG -nsY -gAP -oEX -irT -tyb -xxm -qSK -ieu -nsY -mZc -lfx -neH -deq -bdd -xXW -gVu -ydO -krU -wmz -vbI -rec -bdg -atH -iEM -atH -ppV -bdd -bqZ -bgO -vGG -vGG -bgO -xRJ -xRJ -viO -gMU -ksN -xAt -xAt -bgO -gAj -gAj -bgO -bqZ -bdd -eoy -brq -jnc -brq -bdg -jLS -frb -kNX -mZf -gAj -ngn -jUq -bdd -pEl -roU -oos -uVh -nsY -kzK -lFh -jYc -pVA -mzV -pML -ivz -nsY -iZd -mgb -xbg -jPx -xQd -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(179,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -ojH -ojH -taV -ouf -ouf -ouf -ouf -ouf -ouf -ouf -aLc -wBI -hGG -njn -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -rWz -aej -aeR -agK -agu -aej -dfA -qdJ -qmW -vOy -wWz -pEJ -xQm -wLy -eqD -sNz -uyH -sWW -mWW -wLy -xQm -tfH -wTM -vOy -piQ -poD -bBH -aQx -viv -xzh -syp -nIN -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -rgL -nIN -vmJ -elv -vRR -qXS -qXS -qXS -qXS -qXS -qXS -qXS -hXX -xDe -xDe -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -htg -deq -deq -qCH -cXm -nsY -hUz -dbn -qvC -tyb -uRM -ipe -ehR -nsY -xEe -lfx -tdH -igw -bdd -sgm -kEg -nFA -jkD -xgN -vgn -xgN -bdg -fZE -naa -fZE -fZE -bdg -bqZ -qMR -rwv -rwv -dRT -dqD -dqD -bUb -dRT -eWp -eWp -eWp -dRT -tXb -tXb -fOk -bqZ -bdg -oSM -oSM -ter -oSM -bdg -vLg -loy -naK -mRq -xkB -qXO -eeh -bdd -pcO -tJV -qoY -uCh -nsY -tXT -jJk -wLG -tyb -sZH -rjV -ivz -nsY -qZy -jfS -bUH -ciB -soT -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(180,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -ojH -ojH -taV -ouf -ouf -ouf -ouf -ouf -ouf -ouf -sdf -cRL -hGG -njn -njn -njn -ahi -njn -njn -njn -njn -uux -njn -njn -aej -aej -agO -aid -aej -cOe -vZI -gsJ -vOy -wWz -uwZ -tyD -jQt -vfP -sNz -uyH -uwZ -tyD -jQt -vfP -sNz -wTM -vOy -cOe -vZI -gsJ -nIN -nIN -cyh -nIN -nIN -nIN -nIN -nNX -nIN -nIN -nIN -nIN -ayo -nIN -nIN -nIN -vmJ -nzD -xDV -qXS -qXS -qXS -qXS -qXS -qXS -qXS -hXX -xDe -xDe -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -lfx -lfx -yih -qCH -spT -nsY -nsY -nsY -nsY -tIp -nsY -nsY -nsY -nsY -bwG -bwG -bwG -bwG -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -tvl -naa -meQ -fZE -bdg -bqZ -beH -vGG -vGG -beH -xRJ -xRJ -xRJ -beH -xAt -xAt -xAt -beH -gAj -gAj -beH -bqZ -bdg -oSM -awE -ter -gvK -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bdd -bJt -bJt -bJt -bJt -nsY -nsY -nsY -nsY -goy -nsY -nsY -nsY -nsY -ecj -bZf -lZI -faR -wxu -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(181,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -ojH -ojH -taV -ouf -ouf -ouf -ptA -ouf -ouf -ouf -fTj -jOD -oOw -cPK -sPb -dlo -sAz -jZC -uyd -ito -cuN -cQW -lQa -sPb -gtg -ilq -aMy -aMy -wNC -hOn -sYU -xCs -vOy -wWz -qxP -gxP -gxP -jgg -jZs -uyH -iRN -jgg -gxP -gxP -nMe -wTM -vOy -hOn -sYU -xCs -wNC -kin -oQI -laI -qwU -neZ -fpA -qUx -gUS -wrX -kMp -jkB -hlT -qNI -wrX -tqO -kdn -nyS -qec -qXS -qXS -qXS -jpn -qXS -qXS -qXS -hXX -xDe -xDe -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -lfx -deq -bwG -bwG -bwG -bwG -bwG -bwG -kUI -bFB -iPt -atH -sCg -hgs -sCg -osX -uCt -sCg -atH -eUf -pwx -eUf -eUf -rIP -eUf -atH -fZE -fZE -naa -meQ -fZE -bdg -bqZ -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -bqZ -bdg -oSM -awE -ter -oSM -oSM -brq -mdC -qWK -lyq -lyq -lyq -lyq -brq -eMI -eMI -gjg -bom -kiy -eMI -brq -cSP -cSH -svt -mJO -mJO -mJO -mJO -mJO -mJO -jPx -mgb -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(182,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -dho -wVt -wVt -jlc -sVV -kbv -dTn -kbv -kbv -kbv -jlc -kbv -dTn -sVV -sVV -sVV -sVV -vnM -lLA -ejx -jIs -xLw -vOy -woh -vgO -vgO -vgO -vgO -vgO -utX -vgO -vgO -vgO -vgO -vgO -xAe -vOy -uAP -rgO -kak -nOp -cMz -cMz -cMz -cMz -cMz -gsC -cMz -qLg -aXD -cMz -cMz -gsC -cMz -bTY -qLg -iup -ryY -cnn -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -jCg -bwG -eNL -pVr -oHs -osQ -tpR -tpR -tpR -tpR -tpR -tpR -osQ -tpR -tpR -tpR -tpR -tpR -tpR -osQ -wxp -tpR -baW -meQ -fZE -bdg -bqZ -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -bqZ -bdg -oSM -awE -jas -jhA -cVZ -qWx -jhA -jhA -jhA -jhA -jhA -jhA -qWx -jhA -jhA -jhA -jhA -jhA -jhA -qWx -ldW -mkx -eWv -mJO -plv -plv -plv -mbR -mJO -eBG -nhw -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(183,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -vHn -fbe -hoT -rpG -bGa -dVn -vwC -fbR -xMz -kMV -eON -gxn -vEV -xMz -sdv -xMO -wDg -xMz -lIY -gxn -aMy -kNV -wNC -wlr -xyp -mnf -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -vOy -gPA -eWf -mnf -wNC -gVW -oQI -iaO -vUn -atJ -rCl -ePM -pzd -oWx -nNx -pMA -ncT -gHh -oWx -dbc -cNM -ofU -njk -rXF -jtU -vzB -woU -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -ycl -bwG -xgk -oUi -tLZ -atH -xSx -xSx -fBi -tXo -mBa -pYh -atH -wMl -aAU -dkP -dsY -rwj -xZR -atH -fZE -meQ -iEM -meQ -onn -bdd -bDQ -mng -bCu -bCu -bCu -bCu -wCI -moQ -flW -fvf -rgW -vUe -vUe -vUe -vUe -kuw -cab -bdd -tmE -awE -jnc -awE -oSM -brq -gOS -gOS -sLX -bIj -jtZ -eLu -brq -xpl -exc -jCx -mqt -vno -vno -brq -wDG -ihI -fnc -mJO -plv -plv -plv -plv -mJO -jPx -enQ -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(184,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -vHn -ggD -tob -cGd -njn -njn -njn -njn -njn -njn -hZE -sVV -oON -njn -njn -daI -njn -njn -ael -ael -agQ -aih -ael -hyT -lGh -iCg -cGO -cGO -cGO -rpV -cGO -cGO -cGO -cGO -cGO -kaO -cGO -rpV -cGO -cGO -cGO -cDP -lGh -tkd -nIN -nIN -rBD -nIN -nIN -nIN -rBD -nIN -nIN -nIN -mKi -sfT -hGV -nIN -nIN -nIN -nIN -nIN -nIN -mRU -vpf -tMU -woU -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -ycl -jUx -fZE -bBR -tup -jeb -jeb -jeb -uIT -lKb -jeb -jeb -jeb -jeb -jeb -uIT -mWy -jeb -jeb -jeb -fZE -meQ -iEM -meQ -fZE -bdg -bqZ -udi -ddk -dEQ -hgg -ddk -cQc -nlB -ugu -oQH -wHo -uWc -wka -tTp -veu -mDW -bqZ -bdg -oSM -awE -jnc -awE -oSM -vra -vra -vra -mDT -cgl -vra -vra -vra -vra -vra -mDT -rJx -vra -vra -vra -uGf -mkx -oSM -vfo -plv -plv -plv -plv -mJO -nEl -bhy -lyW -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(185,1,1) = {" -aaa -aaa -aab -aaa -aac -aaf -aaf -aaf -aaf -aag -aag -aag -aag -aag -aag -aag -vHn -hgk -hoT -hoT -njn -rWz -rWz -rWz -jXN -njn -xVe -sVV -mbx -njn -tXa -gJg -tSX -lzt -ael -afE -agT -dgI -ael -ogT -yiu -xIj -xIj -xIj -tsn -tsn -tsn -xIj -tsn -tsn -tsn -xIj -tsn -tsn -tsn -xIj -xIj -xIj -lGh -syO -nIN -aGm -gNo -aGm -nIN -uig -xzh -xzh -fje -nIN -aNO -sfT -hGV -nIN -rgL -rgL -rgL -laD -nIN -upS -jtU -jtU -woU -aag -aag -aag -aag -aag -aag -aag -aaf -aaf -aaf -aaf -ajY -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aac -aaf -aaf -aaf -kyw -deq -lfx -bwG -ycl -ycl -ycl -ycl -bwG -hiP -meQ -czN -jeb -vlX -aNx -qGc -jhD -jeb -osc -cMV -osc -jeb -aIq -xHp -hmF -vlX -jeb -bMf -meQ -iEM -meQ -fZE -bdg -bqZ -udi -ddk -hgg -ddk -dNM -cQc -nlB -ugu -oQH -wHo -uWc -duw -uWc -fIZ -mDW -bqZ -bdg -oSM -awE -jnc -awE -eOx -vra -asX -chf -wDJ -tJz -vra -ukV -oNj -ukV -vra -gll -lpt -mgF -asX -vra -pHh -mkx -hNv -mJO -plv -plv -plv -plv -mJO -nEl -rxe -lyW -aaf -aaf -aaf -ajY -bdH -aaa -aab -aaa -aaa -"} -(186,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -vHn -tob -tob -njn -rWz -rWz -rWz -rWz -njn -hHe -gxn -ioH -njn -jXk -cGR -wks -jFM -ael -afH -agV -ain -ael -cQC -poD -rjr -aMl -aMl -rjr -aMl -iSx -dUR -kaE -kaE -kaE -eRI -qvh -aMl -xXd -aMl -aMl -xXd -lGh -iMD -nIN -nIN -xzh -uVY -nIN -lbO -gNo -xzh -lbO -nIN -uRY -pMA -waJ -nIN -rgL -rgL -rgL -rgL -nIN -oNM -vpf -woU -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aad -aag -aag -aag -kyw -xkb -dAA -bwG -ycl -ycl -ycl -ycl -bwG -cVf -meQ -jTt -jeb -obE -tdE -qGc -rth -rth -oef -oef -oef -nny -rth -xHp -xwl -rHf -jeb -rrU -meQ -iEM -meQ -fZE -bdg -bqZ -ngI -bDP -bDP -bDP -bDP -nBw -moQ -hGO -fvf -uNM -xAt -xAt -xAt -xAt -nNH -bqZ -bdg -oSM -awE -jnc -awE -uNp -vra -bMq -qUq -wDJ -nyQ -nyQ -xJH -xJH -xJH -miV -nyQ -lpt -qYQ -ptj -vra -opV -mkx -xVY -mJO -plv -plv -plv -plv -mJO -jPx -mgb -lyW -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -hoT -hoT -njn -rWz -rWz -rWz -rWz -aba -aGA -kbv -fZo -njn -pKL -jsA -jsA -qTi -ael -afI -agY -aiq -xfm -xIj -qdJ -iCg -mOi -mOi -mOi -mOi -mOi -sOK -tAt -auc -hyE -aqU -aHq -aHq -aHq -aHq -aHq -sfz -qdJ -nZK -mOZ -nIN -xzh -gNo -aZv -xzh -xzh -xzh -gNo -nIN -mzs -aPT -xyB -ceD -rgL -rgL -rgL -rgL -nIN -isq -vpf -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aad -aag -aag -aag -kyw -deq -qZK -bwG -bwG -bwG -bwG -bwG -bwG -dTd -dTd -div -jeb -vlX -thA -gAA -gAA -bfn -oMH -coB -rSj -bfn -gAA -gAA -fFD -vlX -jeb -wEK -meQ -iEM -meQ -fZE -bdg -bqZ -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -beH -bqZ -bdg -oSM -awE -jnc -awE -dNW -vra -asX -drj -cgo -cgo -hyk -qyW -khd -kaI -hyk -cgo -cgo -hQc -asX -vra -crc -goo -hAA -mJO -mJO -mJO -mJO -mJO -mJO -jPx -pgJ -lyW -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -"} -(188,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -hoT -tob -njn -rWz -rWz -rWz -rWz -njn -mAF -ilq -pjj -njn -kCl -cGR -jsA -uqs -ael -afJ -agY -aiq -xfm -xIj -qdJ -xIj -mOi -plO -plO -gFO -avl -imS -rxl -xQV -qQS -aqU -aCZ -dgg -xRk -bti -aHq -wvX -qdJ -nZK -olF -nIN -xzh -lZJ -nIN -lbO -gNo -xzh -vwj -nIN -gfN -efj -sxE -nIN -rgL -rgL -rgL -rgL -nIN -vpI -jtU -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aad -aag -aag -aag -kyw -xwd -lfx -bwG -ycl -ycl -ycl -jCg -bwG -wBw -bZo -vsf -jeb -vlX -tdE -qGc -rth -rth -hNM -vxX -uBO -rth -rth -xHp -xwl -vlX -jeb -dQV -meQ -iEM -meQ -onn -bdd -bDQ -lnm -iLh -iLh -iLh -iLh -grR -moQ -ovp -fvf -rAb -sCA -sCA -sCA -sCA -bVw -cab -bdd -tmE -awE -jnc -awE -gvK -vra -asX -qUq -wDJ -nyQ -lrT -bqW -xaC -qeY -nyQ -nyQ -lpt -qYQ -asX -vra -lDk -dEK -oWN -mJO -plv -plv -plv -mbR -mJO -jPx -mgb -lyW -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -"} -(189,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -tob -xLu -njn -rWz -rWz -rWz -rWz -njn -hZE -kbv -mbx -njn -ePz -cGR -jsA -uqs -ael -afK -ahc -air -ael -sgH -qdJ -xIj -mOi -vRA -oYZ -ezq -eXy -tFe -xQV -pJX -tCC -aqU -qjF -oqv -iqd -rUy -cnS -sfz -qdJ -qTS -nIN -nIN -xzh -oIY -nIN -aGm -qoM -xzh -gNo -nIN -aDS -aPT -hGV -nIN -rgL -rgL -rgL -rgL -nIN -jtU -vpf -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aad -aag -aag -aag -kyw -deq -lfx -bwG -ycl -ycl -ycl -ycl -bwG -tQe -meQ -ktl -jeb -obE -thA -qGc -rth -rth -rth -aTW -aTW -rth -rth -xHp -diJ -rHf -jeb -fZE -meQ -iEM -meQ -fZE -bCx -bqZ -cNf -dll -dll -lRs -dll -rJu -nlB -ugu -oQH -mnI -sJC -vSK -qnC -nuK -dVe -bqZ -bCx -oSM -awE -vOZ -awE -oSM -vra -bMq -drj -wDJ -nyQ -nyQ -nyQ -obQ -obQ -nyQ -nyQ -lpt -eBV -ptj -vra -xzI -mkx -hdV -mJO -plv -plv -plv -plv -mJO -nEl -xbg -lyW -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -"} -(190,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -tob -hUb -njn -njn -njn -njn -njn -njn -laM -kbv -nkH -njn -bVR -gJg -sPa -mSo -ael -afL -ahe -aij -ael -xIj -yiu -xIj -mOi -wVe -wVe -qiw -dDI -tFe -xVc -xQV -vpH -aqU -gjB -wDy -aGN -dxv -cnS -cDP -qdJ -muW -aZv -gNo -gNo -pga -nIN -nIN -nIN -rBD -nIN -nIN -oIa -aPT -bqY -nIN -nIN -nIN -nIN -nIN -nIN -vpf -vpf -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -kyw -kyw -kyw -kyw -kyw -deq -iGc -bwG -ycl -ycl -ycl -ycl -cmC -fZE -meQ -hvz -jeb -vlX -tdE -qGc -rth -rth -tPI -tPI -iXT -rth -rth -xHp -xwl -vlX -jeb -fZE -meQ -cmL -czR -jzT -bCy -bDS -cNf -dll -qSE -nff -dll -rJu -nlB -ugu -oQH -mnI -nMp -qnC -qnC -qnC -dVe -cac -bCy -hQf -sTU -xLX -awE -hCf -vra -asX -qUq -wDJ -nyQ -nyQ -pHA -pHA -nyQ -nyQ -nyQ -lpt -qYQ -asX -vra -wcD -mkx -oSM -cnd -plv -plv -plv -plv -mJO -kLm -xbg -lyW -lyW -lyW -lyW -lyW -lyW -aaa -aab -aaa -aaa -"} -(191,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -tJq -bLf -njn -rWz -rWz -rWz -jXN -njn -hZE -kbv -mbx -njn -daI -njn -njn -njn -adO -adO -adO -adO -adO -iWB -yiu -syO -mOi -mOi -mOi -mOi -mOi -mOi -mAe -mAe -mAe -aqU -jVE -nTs -pje -pje -cnT -trx -gnK -aNE -nIN -nIN -nIN -nIN -nIN -uig -hPL -xzh -dMj -nIN -aDS -aPT -hGV -nIN -rgL -rgL -rgL -laD -nIN -wUJ -vpf -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -ety -deq -deq -deq -deq -deq -xJp -bwG -ycl -ycl -ycl -ycl -bwG -lFL -sNL -ygB -jeb -jeb -hfa -jwK -wnY -cLC -lyh -rtA -esn -nFK -lEO -xWd -oSL -jeb -jeb -fZE -meQ -dAm -fEF -otC -bdd -bDT -tHv -xRJ -xRJ -xRJ -xRJ -tSB -moQ -caO -fvf -vrW -iXb -iXb -iXb -iXb -pzV -cad -bdd -vMA -oYi -sIR -awE -oSM -vra -vra -eUh -jTI -lzq -nyQ -nhx -eiq -oEA -wXH -xBQ -mSU -wVy -vra -vra -siy -wIX -aCu -mJO -plv -plv -plv -plv -mJO -nEl -xbg -jPU -mgb -cgU -oqI -iDk -lyW -aaa -aab -aaa -aaa -"} -(192,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -hoT -rGz -njn -rWz -rWz -rWz -rWz -njn -hHe -gxn -gKd -njn -jsA -jsA -wET -gxk -adO -afM -fpR -ahf -adO -oDm -poD -xIj -mOi -mzP -mzP -nkK -tqu -aqU -gpW -ofY -eQj -aqU -lyE -rsO -aGN -rbB -cnS -xXd -qdJ -iCg -aUH -aXx -jKI -aXx -nIN -aGm -gNo -xzh -gNo -nIN -lCL -pMA -gcm -nIN -rgL -rgL -rgL -rgL -nIN -uNz -jtU -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -byt -lfx -lfx -lfx -lfx -txp -veq -bwG -ycl -ycl -ycl -ycl -bwG -bwP -bwP -bwP -jeb -tkN -qHg -gAA -beP -bfn -pkz -qfh -ipE -bfn -moI -gAA -cGV -tkN -jeb -hjQ -meQ -fNd -oUi -qdV -bdd -bDU -bqZ -bqZ -bqZ -kFs -bqZ -bqZ -bqZ -kFs -bqZ -bqZ -bqZ -kFs -bqZ -bqZ -bqZ -cae -bdd -huP -nbu -kcg -awE -oSM -vra -gNq -hXb -cgo -fwY -hyk -nNV -hyk -mBc -hyk -fwY -cgo -skF -gNq -vra -fqA -fqA -fqA -mJO -plv -plv -plv -plv -mJO -rxq -sAS -cXX -sAS -sAS -nHG -xbg -lyW -aaa -aab -aaa -aaa -"} -(193,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -tob -alh -njn -rWz -rWz -rWz -rWz -bWh -hmj -kbv -fZo -njn -iSd -jsA -jsA -qbP -adO -afN -ahh -aiw -ahG -muW -qdJ -xIj -mOi -mzP -mzP -cJv -xQV -mCx -qQS -tIu -uPI -aqU -wmK -liJ -pTj -cnq -cnS -sfz -poD -xIj -aUH -oyE -mMP -mMP -nIN -xzh -gNo -xzh -gNo -nIN -mzs -aPT -xyB -cix -rgL -rgL -rgL -rgL -nIN -bWg -jtU -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -deq -lfx -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -txE -bwP -bwP -jeb -aMx -qHg -qGc -hxe -aPf -rth -rth -rth -rth -hxe -xHp -cGV -nBa -jeb -atH -atH -dAm -aCX -suH -bdd -beQ -beQ -beQ -beQ -bdd -bdd -hjk -bOJ -bdd -hjk -bOJ -bdd -bdd -beQ -beQ -beQ -beQ -bdd -oCb -wwv -sIR -brq -brq -vra -bMu -hXb -wDJ -ivs -nyQ -nyQ -pHA -nyQ -nyQ -ivs -lpt -skF -pQF -vra -fqA -fqA -gzM -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -nEl -mgb -lyW -aaa -aab -aaa -aaa -"} -(194,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -btV -hoT -njn -rWz -rWz -rWz -rWz -njn -mAF -ilq -pjj -njn -xqh -svq -jsA -xGI -adO -afO -ahh -aiw -adO -xIj -qdJ -xIj -ryn -ryn -ryn -ryn -ryn -mOi -xdA -qQS -uUB -aqU -aHq -cnH -kzk -cnR -aHq -xIj -qdJ -xIj -aUH -sIA -gSj -aXA -nIN -xzh -gNo -xzh -lbO -nIN -gfN -efj -sxE -nIN -rgL -rgL -rgL -rgL -nIN -kUL -tMU -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -deq -iGc -wDr -mFL -mFL -iFp -wNz -wNz -wNz -oWE -wNz -wNz -suU -bwP -bwP -bwP -jeb -iow -aMO -qGc -hxe -rth -hXd -guW -aQM -rth -hxe -xHp -aUi -iow -jeb -fZE -meQ -rTA -tAW -stR -bCz -bDV -bGw -bGw -bGw -bGw -bNA -bKA -bdj -oMe -bdj -bKA -bNA -bGw -bDV -bGw -bGw -bGw -bCz -oSM -oYi -sIR -awE -dnP -vra -wTw -bNE -wDJ -ivs -nyQ -vqI -vWB -bSK -nyQ -ivs -bUi -bUT -wTw -vra -fqA -fqA -fqA -dBg -aqL -aqL -buY -aqL -aqL -aqL -uWm -nRA -nRA -wDr -jPx -wdW -lyW -aaa -aab -aaa -aaa -"} -(195,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -tob -tob -njn -rWz -rWz -rWz -rWz -njn -xXT -sVV -tkR -njn -ugo -uTl -cGR -wnb -adO -jkj -ahh -aiw -adO -eMr -lGh -xIj -ioU -pvK -qPE -xqD -ioU -ntj -ntj -ntj -ntj -ntj -cnE -liJ -hgB -cbn -aHq -eMr -gqz -shC -aUd -ckK -iKM -aHM -nIN -xzh -gNo -dMj -vNo -nIN -nme -sfT -vAH -nIN -rgL -rgL -rgL -rgL -nIN -edG -vpf -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -lfx -gSH -wDr -mFL -mFL -iFp -wNz -wNz -wNz -wNz -wNz -wNz -suU -bwP -bwP -bwP -aLT -aLT -aLT -aLT -ozq -ueZ -aPK -aLT -aQN -wsR -dAq -aQL -aQL -aQL -aQL -dQV -meQ -dAm -fEF -fZE -bCA -bCA -bdj -bCA -bCA -bdj -bCA -bCA -bdj -bCA -bdj -bCA -bCA -bdj -bCA -bCA -bdj -bCA -bCA -oSM -oYi -sIR -awE -gvK -bJC -bJC -bJC -bJC -cib -xvE -bQZ -bJC -bSL -moM -rXS -bSJ -bSJ -bSJ -bSJ -fqA -fqA -fqA -dBg -aqL -aqL -aqL -aqL -aqL -aqL -uWm -nRA -nRA -wDr -nEl -mgb -lyW -aaa -aab -aaa -aaa -"} -(196,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -hoT -hoT -njn -njn -njn -njn -njn -njn -ehL -kyr -chb -njn -njn -njn -eDe -njn -njn -lFt -ahh -aiw -adO -ogT -yiu -xIj -ioU -qyZ -wTd -cmK -cyP -kSi -mmn -kSi -qyA -kXu -jHC -liJ -qmP -uoH -aHq -xIj -lGh -xIj -aUH -dbv -lII -aWc -nIN -rBD -nIN -nIN -nIN -nIN -tCx -ncG -tZg -nIN -nIN -nIN -nIN -nIN -nIN -jtU -jtU -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -oif -nRN -wDr -mFL -mFL -iFp -wNz -wNz -wNz -wNz -wNz -wNz -suU -bwP -bwP -bwP -aLT -kaB -vVb -aLT -aOy -aOz -mKb -aLT -vbM -aRP -aSH -aQL -mJP -bSn -aQL -hEm -kti -eFa -fEF -exQ -bCB -bCB -bCB -bCB -bCB -bCB -bCB -bCB -bri -bdj -bri -bCB -bCB -bCB -bCB -bCB -bCB -bCB -bCB -uuI -oYi -mkx -bIW -eMZ -bJC -jSp -lAQ -bJC -bOZ -bPa -vhR -bJC -mWQ -bTy -bUf -bSJ -hII -iJS -bSJ -fqA -fqA -fqA -dBg -aqL -aqL -aqL -aqL -aqL -aqL -uWm -nRA -nRA -wDr -xgS -svF -lyW -aaa -aab -aaa -aaa -"} -(197,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -vHn -hoT -tob -lso -hoT -tob -tob -hqm -rpG -cSa -aeA -sjz -hbl -qYz -cGR -cGR -jsA -cdZ -aiw -ahh -aiw -nph -xIj -poD -xIj -ioU -mSz -nIG -cSk -ene -aGN -aGN -suy -uaV -uaV -nSS -iKf -aGN -qrv -aHq -vcG -qdJ -xIj -amM -ckd -mQC -aHM -aZv -xzh -xzh -kya -qoM -aZv -wcm -lJY -guo -rXF -fLi -vpf -uBx -jtU -jtU -vpf -vpf -woU -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -vaV -qxJ -wDr -lFw -wWt -wWt -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -aLT -aLT -aLT -sXt -aMQ -aNI -bfy -aMz -sHY -aLT -msm -aRT -xMR -aTw -aUj -kLk -aQL -npw -vzi -eFa -fEF -rbd -bdk -bdk -bgR -bwc -eqP -pUp -bdk -bdk -brj -bQQ -fSl -bdk -bdk -pUp -eqP -myJ -eKI -bdk -bdk -cxF -oYi -mkx -fic -kjW -bJC -ojF -bNG -bOx -chR -bJD -mzg -bJC -ycZ -bTA -cIr -gHo -bUU -uDW -bSJ -bSJ -ljv -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -fCg -fCg -geu -wDr -wtk -mgb -lyW -aaa -aab -aaa -aaa -"} -(198,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abh -cGd -cGd -moK -cGd -cGd -cGd -cGd -cGd -wYa -nBK -mzS -njn -njn -njn -njn -cGR -njn -afP -ahh -aiw -nph -xIj -yiu -xIj -ioU -ioU -ioU -ioU -nmV -oeM -oeM -pUd -oeM -eed -udZ -aGN -aGN -pSU -aHq -upW -qdJ -xIj -amM -drk -mQC -mkG -nIN -qHT -nIN -nIN -nIN -nIN -nuM -uHr -xwX -mRU -mRU -mRU -mRU -mRU -gBs -mRU -mRU -uOi -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -lfx -gUn -wDr -bdY -bdY -bdY -aaF -aaF -aaF -aaF -aaF -aaF -aaF -wDr -aLT -aLT -aLT -aLT -aLT -aLT -tNR -aMP -eAg -aLT -qoJ -aRZ -aSI -aQL -aQL -aQL -aQL -aQL -uBj -eFa -fEF -wMB -bdl -bdl -bdl -bdl -bdl -bdl -bGo -bGo -qjY -pCr -jpD -cpK -cpK -bdl -bdl -bdl -bdl -bdl -bdl -opd -oYi -mkx -jwP -bJC -bJC -bJC -bJC -bJC -mjS -bNF -szM -bJC -qrc -bTE -syH -bSJ -bSJ -bSJ -bSJ -bSJ -ljv -wDr -anm -anm -anm -anm -anm -anm -anm -pfp -pfp -pfp -wDr -nEl -xbg -lyW -aaa -aab -aaa -aaa -"} -(199,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abh -acx -vuG -aeC -aeA -aeA -axw -aeA -bbe -aeA -aeC -aeA -bbe -aeA -aeA -njn -cGR -njn -afQ -aiw -aiw -nph -xIj -yiu -xIj -ioU -lPO -vJg -ioU -vQf -oeM -oeM -eed -oeM -eed -vQq -eEo -aGN -rub -aHq -sgH -qdJ -xIj -amM -eqB -obC -hcf -nIN -nhN -nIN -lJY -lJY -lFK -lJY -vcE -lJY -lFK -lJY -lMY -lJY -qvI -lJY -mCL -rRq -uOi -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -kyw -oxn -oxn -wDr -bdY -bdY -bdY -aaF -aaF -aaF -aaF -aaF -aaF -aaF -wDr -aLT -aLT -bbY -bdr -bdz -bdr -bft -bgU -bhG -aLT -bjs -blA -bno -bpC -brn -aRT -buM -aQL -fZE -eFa -fEF -wMB -bdl -bEr -bEs -bIs -bdm -rbY -eAG -bOK -bPD -bYa -bPD -jOk -bNB -tiE -xGo -bYu -nmK -caf -bdl -oDU -oYi -mkx -oSM -bJC -cdT -cfo -cgq -cfo -chM -cjd -cjA -bJC -ckr -ckQ -clh -clg -clI -clg -clW -bSJ -ljv -wDr -anm -anm -anm -anm -anm -anm -anm -pfp -pfp -pfp -wDr -cZI -xGT -lyW -aaa -aab -aaa -aaa -"} -(200,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abi -acz -aeA -aje -amF -asA -ayb -amF -amF -amF -ayb -asA -amF -kmE -aeA -njn -xzx -njn -ahJ -ahJ -ahJ -adO -xIj -poD -xIj -ioU -dnS -viN -bAu -nVB -eHY -oeM -eed -oeM -eed -iLf -aRi -aGN -qrv -aHq -fsh -qdJ -xIj -aUH -aGz -aGz -aGz -nIN -lZJ -nIN -lJY -qbx -dcp -yeH -sSl -dcp -dcp -dcp -sSl -yeH -dcp -nja -lJY -xxZ -uyC -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -emA -vIg -vIg -wDr -bdY -bdY -bdY -aaF -aaF -aaF -aaF -aaF -aaF -aaF -wDr -aLT -aLT -bca -aMC -aLT -avv -bfu -rGj -aQT -aLT -aTv -blB -bnp -aTx -aQL -aUY -buN -aQL -fZE -eFa -fEF -wMB -bdl -bDX -bCA -bCA -bdj -rbY -bEc -bKA -bCA -bQS -bCA -bKA -bEc -tiE -tjl -rIH -tUh -cag -bdl -jDz -oYi -mkx -oSM -bJC -cdU -bMy -bJC -cog -chN -mzg -cdP -bJC -dpO -ckX -cli -coj -bSJ -bVo -clX -bSJ -ljv -wDr -anm -anm -anm -anm -anm -anm -anm -pfp -pfp -pfp -wDr -cOo -rJf -tcO -aaa -aab -aaa -aaa -"} -(201,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abi -acA -aeA -ajk -aeA -aeC -aeC -aeC -cVb -aeC -aeC -aeC -vOh -gUX -ily -njn -eDe -njn -aeC -aeC -aeC -mdm -xIj -poD -xIj -ioU -pPM -qKz -ioU -mGu -fXx -fXx -kXf -huO -iLO -qLV -xNv -iLO -bUa -aHq -ogT -lGh -xIj -mdm -vcE -vcE -vcE -nIN -rBD -nIN -cBb -xVS -lJY -vcE -vcE -vcE -iTd -vcE -vcE -vcE -eKH -lVo -lJY -kAm -uyC -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -emA -gPS -gPS -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -aLT -aLT -aLT -aLT -aLT -aLT -bfx -rGj -aQT -aLT -aTv -blB -kiU -aQL -aQL -aQL -aQL -aQL -dQV -eFa -fEF -fNH -bdl -bDY -bCA -bCA -nLt -gmb -bNQ -bNQ -bNQ -bNQ -bNQ -bNQ -bNQ -nXU -bKA -jac -bCA -cah -bdl -wPi -oYi -mkx -gvK -bJC -bJC -bJC -bJC -bJC -chO -mzg -cdP -bJC -dpO -ckX -clj -bSJ -bSJ -bSJ -bSJ -bSJ -ljv -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -nGM -hIp -tcO -aaa -aab -aaa -aaa -"} -(202,1,1) = {" -aaa -aaa -aab -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -abh -acx -ahz -ajs -aeC -aeC -plq -wUZ -wUZ -wUZ -lwy -aeC -aeC -ajs -aeC -mzS -aeC -oZI -fjo -fjo -opu -hlj -iso -ceV -nsH -alL -alL -alL -jvY -jvY -jvY -jvY -jvY -jvY -jvY -jvY -jvY -alL -alL -alL -iso -ceV -nsH -hlj -nvz -ner -ner -vdR -uHr -nuM -vcE -kUV -vcE -vcE -npr -oYl -oYl -oYl -jzj -vcE -vcE -kUV -cil -rRq -uOi -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -emA -jEM -ikT -owU -iTq -ikT -jEM -kjY -riB -fGi -qan -jkN -jUh -tIF -bCk -jkN -aLT -bco -aMB -bdA -aLT -ial -rGj -aPl -aLT -aPn -aRU -bnr -aQL -brr -aUZ -buO -aQL -fZE -eFa -fEF -tLZ -bdl -bDZ -bdj -bri -bLX -bdl -kSU -bNP -bmD -bNP -bmD -bNP -bmD -mYv -doP -jac -xxa -cai -bdl -tkg -oYi -mkx -oSM -bJC -cdV -bMx -cgr -bJC -raK -mzg -bgW -bJC -ckR -ckX -iyS -bSJ -clJ -bVn -clY -bSJ -ljv -dnZ -eHy -eHy -eHy -cyp -oaO -lWY -ljv -jiM -ere -lYg -lYg -sEu -lia -tcO -aaa -aab -aaa -aaa -"} -(203,1,1) = {" -aaa -aaa -aab -aaa -aae -aah -aah -aah -aah -aag -aag -aag -aag -aag -aag -aag -aag -abh -acx -pMk -ajs -aeC -wXh -mAC -atr -lMy -aex -tjJ -wXh -aeC -ydz -ayb -jxq -fbV -msS -asA -asA -msS -nZf -rho -jIs -emL -jvY -jvY -jvY -jvY -apW -aqV -asH -aui -avN -aqV -axV -jvY -jvY -jvY -jvY -gqI -iCT -qnH -nZf -ohi -yeH -yeH -ohi -oJK -qnX -sSl -kkx -vcE -kpo -oBw -tGi -cea -bXe -lxX -kpo -vcE -kUV -xyL -rRq -uOi -aag -aag -aag -aag -aag -aag -aag -aag -aah -aah -aah -aah -afm -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -emA -kJZ -kjY -fGB -snN -jEM -ikT -jEM -lty -eTD -lty -jEM -ikT -kjY -bCk -heO -aLT -bco -bdr -bdA -aLT -bfw -rGj -aQT -aLT -aTv -blB -vJV -aQL -brr -aRT -buO -aQL -fZE -eFa -fEF -xpc -bdl -lOr -lOr -iwI -bdl -bdl -reH -bNP -bmD -bNP -bmD -bNP -byu -obo -tiE -bYv -tiE -tiE -bdl -fJt -oYi -mkx -oSM -bJC -cdV -cfo -cgr -bJC -chQ -mzg -cdP -bJC -dpO -ckX -clk -bSJ -clJ -clg -clY -bSJ -ljv -eaz -lYg -lYg -aqH -oxl -wac -mjy -ljv -ien -xhO -xhO -xhO -cmN -srl -tcO -aaa -aab -aaa -aaa -"} -(204,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -bdH -aaa -aae -aah -aah -aah -aah -aah -aah -aah -abi -nGY -gyU -ajk -aeA -rTB -igE -atr -iDK -atr -giy -eVu -aeA -ajk -aeA -fXO -aeC -pdo -nBK -nBK -wYa -hlj -giW -puP -tfF -jvY -arg -atf -jvY -apX -aqb -asI -aqb -avO -aqb -axW -jvY -aMm -aOq -jvY -bgM -puP -tfF -hlj -xwX -uHr -uHr -ehm -nXG -qYd -lJY -xVS -lJY -scF -pdD -faO -cOd -bXe -hXq -kkd -lJY -xVS -kPH -knL -uyC -aah -aah -aah -aah -aah -aah -aah -afm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -emA -emA -emA -emA -emA -sEg -ikT -jEM -ahL -bFl -nZW -jEM -ikT -jEM -jEM -bCk -aLT -bcZ -bdr -bdC -beR -bfy -rGj -aQT -aLT -aTv -blB -bnt -bpG -brs -aRT -bew -aQL -atH -dAm -aCX -atH -mCo -iwZ -jFy -bKA -oNW -dmF -pXV -bNP -bmD -bNP -bmD -bNP -bmD -lyk -bOR -eHa -cmo -xAB -mCo -brq -wwv -sIR -brq -bJC -bKX -cfo -cgs -chk -chR -mzg -cdP -bJC -dpO -ckX -cll -clE -clK -clg -bVy -bSJ -ljv -ljv -ljv -ljv -tWl -jer -ljv -ljv -ljv -jEA -hCq -tcO -tcO -tcO -tcO -tcO -aaa -aab -aaa -aaa -"} -(205,1,1) = {" -aaa -aaa -aab -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -abi -dEJ -gyU -ajk -aeA -wKU -rpk -atr -iDK -atr -uXJ -mAT -aeA -ajk -ily -cMx -fVk -cMx -rjX -aeC -beN -mdm -lLt -qdJ -vCv -jvY -arh -atm -jvY -apY -aqb -asJ -aqb -avP -aqb -axX -jvY -nSG -aOs -jvY -lLt -poD -vCv -mdm -rmo -vcE -uul -yat -qLk -yat -cBb -xVS -lJY -mpA -wRt -bXe -cOd -tGi -sSV -qPr -lJY -xVS -kPH -qGU -uyC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -emA -tcm -ikT -jEM -uzv -tYr -uzv -jEM -ikT -hYf -jEM -ikT -aLT -bco -bdr -bdA -aLT -bfD -aPj -aPl -aLT -aPn -blB -sNb -aQL -brr -aRT -buO -aQL -jpW -eFa -svw -mzv -bmv -bEg -bGU -bGU -bKz -snw -qsC -bNL -bNL -bNL -bNL -bNL -bNL -bWL -bXH -bYw -nDM -bWL -sSa -bRo -dOG -gKw -tgz -bJC -cdV -cfo -cgr -bJC -foL -mzg -bgW -bJC -ckR -ckX -loS -bSJ -clJ -clg -clY -bSJ -bXh -lYg -lYg -lYg -sEu -eaz -ere -lYg -lYg -sEu -gEh -tcO -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(206,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -abh -acx -gCB -ajs -aeC -wXh -mAC -atr -rmG -bXz -tjJ -wXh -aeC -ajs -qon -cMx -gqx -aep -ggQ -ggQ -aME -aep -lLt -lGh -vCv -jvY -ari -aoP -jvY -apZ -aqb -asK -aqb -avQ -aqb -aqa -axo -atm -aOr -jvY -lLt -poD -vCv -aep -aME -ggQ -aME -aep -dcX -yat -dHe -kUV -vcE -kpo -oBw -bXe -sZY -mzF -lxX -kpo -vcE -kUV -bxA -rRq -uOi -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -emA -hyb -fGB -kjY -yia -ugZ -kcG -fBo -ikT -jEM -jEM -ikT -aLT -bco -aMC -bdA -aLT -bfx -bgY -aQT -aLT -aTv -blB -nCp -aQL -brr -aUY -buO -aQL -fZE -eFa -fEF -tLZ -mCo -bEh -bNQ -bNQ -bNQ -pjG -boy -bpQ -bpQ -bsJ -bpQ -bpQ -bxf -bZr -bKA -bKA -cXR -cal -mCo -wcD -oYi -mkx -oSM -bJC -cdV -bMy -cgr -bJC -chP -mzg -cdP -bJC -dpO -ckX -cln -bSJ -clJ -bVo -clY -bSJ -tgm -xhO -xhO -xhO -xhO -gEh -sOD -gEh -xhO -xhO -tWp -tcO -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(207,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -abh -acx -aeB -ajs -aeC -aeC -nkr -qpD -yka -yka -oVh -aeC -aeC -ajs -aeC -cMx -qbw -aep -afj -afk -agM -aep -lLt -yiu -vCv -jvY -arj -atm -jvY -xRH -aqb -aqb -aqb -aqb -aqb -aqb -bzD -atm -aOs -jvY -lLt -yiu -vCv -aep -aHS -afk -sHo -aep -cnm -yat -vcE -kUV -vcE -vcE -cjM -urp -urp -urp -evO -vcE -vcE -kUV -riP -rRq -uOi -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -emA -emA -emA -emA -emA -emA -emA -emA -emA -emA -iTq -snN -aLT -aLT -aLT -aLT -aLT -hQW -bgY -aQT -aLT -aTv -blB -qhU -aQL -aQL -aQL -aQL -aQL -fZE -eFa -fEF -bNr -bdl -bEi -bZr -bmD -ngw -pjG -boz -bpR -bpR -bpR -bpR -bpR -bxg -bZr -bKA -bKA -cir -bdl -bdl -sXC -oYi -mkx -oSM -bJC -bJC -bJC -bJC -bJC -uUo -mzg -cdP -bJC -dpO -ckX -sUO -bSJ -bSJ -bSJ -bSJ -bSJ -cZp -xhO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(208,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -abi -acX -aeA -aju -amH -aeC -aeC -aeC -cVb -aeC -aeC -aeC -aeA -ajk -aeA -cMx -qbw -aep -afk -afk -afk -aep -lLt -poD -vCv -jvY -ark -atm -jvY -bhf -aqb -asL -aqb -avR -aqb -kTv -axo -atm -thv -jvY -lLt -yiu -vCv -aep -afk -aHl -afk -aep -rZZ -yat -lJY -itR -kKR -vcE -vcE -vcE -iTd -vcE -vcE -vcE -lJY -xVS -lJY -hki -uyC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ikT -jEM -aLT -bcE -aMB -bdD -aLT -bfz -bgY -aPl -aLT -aPn -blB -bnu -aQL -brt -aUZ -buS -aQL -fZE -eFa -fEF -tLZ -bdl -brp -bZr -bmD -xId -pjG -boz -bpR -bpR -bpR -bpR -bpR -bxg -bZr -bNQ -bNQ -bNQ -bGz -egD -oQn -oYi -mkx -oSM -bJC -cdX -bMx -cgt -bJC -chS -bQA -bgW -bJC -ckR -ckX -meu -bSJ -clL -bVn -clZ -bSJ -tgm -xhO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(209,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -abi -acY -aeA -ajv -amF -asA -ayb -amF -amF -amF -ayb -asA -amF -ohL -aeA -cMx -oVo -aep -aep -aep -aep -aep -umI -ddO -umI -jvY -alL -atk -jvY -jvY -axo -axo -axo -axo -axo -jvY -jvY -aAy -alL -jvY -umI -juj -umI -aep -aep -aep -aep -aep -lla -yat -lJY -ucw -dcp -yeH -sSl -dcp -dcp -dcp -sSl -yeH -dcp -lMp -lJY -jbt -uyC -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -qGC -jEM -aLT -bcE -bdr -bdD -aLT -rrq -bgY -aQT -aLT -aTv -blB -mtr -aQL -brt -bpC -buS -aQL -bMf -eFa -fEF -tLZ -bdl -bEl -wup -bmD -hBz -pjG -boA -bpR -bpR -bsK -bpR -bpR -bxh -bZr -krN -krN -krN -oqY -lde -oSM -oYi -mkx -oSM -bJC -cdX -cfo -cgt -bJC -chQ -cjf -cdP -bJC -dpO -ckX -xoe -bSJ -clL -clg -clZ -bSJ -xMm -pFr -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(210,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -abh -acx -aeA -aeA -aeA -aeA -aeC -aeA -aeA -aeA -aeC -ntI -aeA -aeC -puO -cMx -qbw -xnh -aep -aep -aep -aep -sHI -jao -qhT -jvY -arl -atm -alL -awv -axu -azc -aAZ -aDa -aFh -aHr -alL -aMo -aOt -jvY -sHI -lOn -wCe -oIB -jgr -cXz -rtc -oIB -cnm -yat -lJY -uxC -lJY -lJY -fFe -lJY -lJY -lJY -vcE -lJY -lJY -lJY -lJY -rRq -uOi -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ikT -jEM -aLT -abS -bdr -bdC -beS -bfy -bgY -aQT -aLT -aTv -blB -bnt -bpH -brs -bpC -abT -aQL -atH -dAm -aCX -atH -bdl -buz -bZr -bmD -dmE -pjG -boz -bpR -bpR -bpR -bpR -bpR -bxg -bZr -ibc -uly -bNN -vbR -eGq -uuI -wwv -sIR -brq -bJC -ack -cfo -cgs -chl -chR -cjf -cdP -bJC -dpO -ckX -cll -clF -clK -clg -acp -bSJ -qKK -gEh -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(211,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abh -abh -abh -abh -aeC -atr -aeC -atr -aeC -cMx -cMx -cMx -cMx -mRI -cMx -cMx -qbw -rYU -cMx -cMx -cMx -cMx -sHI -jao -qhT -jvY -abF -atm -auH -atm -atm -atm -aBb -aFi -aFi -aHs -aIT -atm -aVF -jvY -sHI -aPC -pKH -oIB -fXE -kaS -aiQ -oIB -cnm -yat -yat -kNq -kNq -qDB -kNq -kNq -vcE -bXe -vcE -bXe -vcE -uOi -uOi -uOi -uOi -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -jEM -ikT -aLT -bcE -aMC -bdD -aLT -bfC -bgY -aPl -aLT -aPn -aRX -cSQ -aQL -brt -aUY -buS -aQL -fZE -eFa -fEF -hvz -bdl -bEm -bZr -bmD -hAc -pjG -boz -bpR -bpR -bpR -bpR -bpR -bxg -bZr -xBV -uys -uys -uys -uys -bfd -oYi -mkx -oSM -bJC -cdX -bMy -cgt -bJC -chV -cjf -bgW -bJC -ckR -bTC -mvl -bSJ -clL -bVo -clZ -bSJ -hTU -lNk -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(212,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -abh -aeC -atr -aeC -atr -aeC -cMx -jrC -jYa -cMx -wFX -cMx -kqa -qbw -oVo -cMx -oVo -oVo -cMx -nSw -qsG -qhT -jvY -jvY -jvY -jvY -awx -awx -azd -aBc -aDb -awx -awx -jvY -jvY -jvY -jvY -sjG -lOn -qhT -oIB -wqr -bZw -xUV -oIB -cnm -cjm -yat -toD -wDq -aPO -sNP -kNq -vcE -bXe -vcE -bXe -vcE -uOi -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -rIV -dYc -aLT -aLT -aLT -aLT -aLT -bfx -bgY -aQT -aLT -aTv -blB -sNb -aQL -aQL -aQL -aQL -aQL -edn -qRd -gtH -edn -bdl -bpT -bNN -bNN -bNN -bmB -boB -bpS -bpS -bsL -bpS -bpS -bxi -bZr -bKA -dyx -eYr -bUo -uys -kKB -rsL -jts -kKB -bJC -bJC -bJC -bJC -bJC -chW -rvT -cdP -bJC -dpO -ckX -hAZ -bSJ -bSJ -bSJ -bSJ -bSJ -xsv -gEh -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(213,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -abh -aeC -atu -azU -aeC -ldl -cMx -qbw -iAI -cMx -tvA -cMx -iml -fIK -kZc -wuS -fIK -fIK -wuS -tzF -qsG -qhT -alL -urM -dBG -jvY -jvY -jvY -jvY -aBf -jvY -jvY -jvY -jvY -wjv -fDG -alL -sHI -aPC -tzF -qgK -tEB -uBM -dXo -oIB -fME -kon -yat -swG -jei -aPO -hIX -kNq -vcE -pxJ -swM -vcE -fFe -uOi -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -jEM -kDd -aLT -bdJ -bds -aLT -bpL -bfE -njd -aQT -aLT -aTv -blB -uvu -aUZ -aQL -bsS -mqK -aQL -bqc -tcS -mww -sZe -bdl -bEp -bCA -wlh -cvb -bmC -nwG -lDL -nwG -lMw -jeO -nQv -ltb -bmD -bKA -dyx -hGN -pVx -uys -wKm -ekM -aVM -wVm -bJC -cfp -cgu -bJC -bMx -chQ -cjf -cdP -bJC -dpO -ckX -clo -bVn -bSJ -clM -clS -bSJ -cZp -gEh -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(214,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -fTl -taw -taw -taw -mRI -taw -cMx -vPT -iAI -cMx -wTn -cMx -cLd -qbw -pTI -cMx -oVo -oVo -cMx -nWf -lOn -acQ -kwd -amw -anO -arq -arq -arq -aze -xYZ -aDe -arq -arq -arq -anO -qaV -kwd -acQ -lOn -qhT -oIB -wKF -hzb -ltU -oIB -wSB -gAO -yat -bCR -jei -aPO -fJp -kNq -kNq -kNq -kNq -qDB -kNq -fVe -aag -aag -afm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -jEM -ikT -aLT -beT -bdr -bkg -aMz -bfy -bgY -aPl -aLT -aPn -blB -bnt -aRT -ihY -bpC -dnE -aQL -qfI -dpA -ggo -lhs -bdl -tiE -tiE -tPj -tiE -tiE -bdl -bdl -fnI -agv -bdl -bdl -bdl -kFO -kFO -uys -uys -uys -uys -gyw -bFX -gyw -hza -bJC -bMA -cfo -chm -bJD -chR -cjf -bgW -bJC -ckR -ckX -cll -bTA -clG -clg -bVq -bSJ -ien -dFL -tcO -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(215,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -fTl -vrZ -qlu -taw -wTn -kCu -cMx -sdd -iAI -cMx -wFX -cMx -nDH -qbw -rYU -cMx -oVo -rYU -cMx -nXV -qMI -rUN -aqg -oOW -atn -atn -atn -sAw -anP -aBh -anP -anP -iJs -dFN -atn -aOB -aRj -rUN -hft -swn -oIB -phj -vEf -cNK -oIB -xiW -mCg -ryJ -aPO -aPO -aPO -jei -jei -lYt -jei -jei -aPO -jei -fVe -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -sEg -ikT -aLT -aLT -aLT -aLT -brv -nuA -bgY -aQT -aLT -aTv -blB -oiQ -lml -aQL -aQL -aQL -aQL -oxe -tcS -mww -sZe -bdl -fKT -bGy -kOW -snM -iqo -bdl -clV -crD -kLP -gvU -cyo -bdl -hTP -tXj -sgc -xCa -bUy -bdl -eTx -ekM -cJs -pOW -bJC -bJC -bJC -bJC -cdf -jxx -cjf -cdP -bJC -dpO -ckX -rXj -gfo -bSJ -bSJ -bSJ -bSJ -cZp -xhO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(216,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -fTl -hjT -rWb -taw -oAK -kCu -cMx -fVk -cMx -cMx -tvA -cMx -oVo -qbw -oVo -cMx -iVz -rAS -cMx -sHI -lOn -acQ -kwd -eDT -amx -amx -amx -awy -amx -amx -amx -amx -amx -mpZ -amx -aoT -kwd -acQ -tof -wCe -oIB -cHC -dha -pxj -oIB -wSB -hYj -yat -fPF -jei -nNT -kDZ -cZm -bCi -bCi -bCi -aiZ -jei -fVe -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -jEM -ikT -aLT -beT -bdr -bpK -aMz -bfy -bgY -aQT -aLT -aTv -blB -bnt -aRT -mUx -bpC -dnE -aQL -bqc -tcS -mww -sZe -bdl -fgm -wEF -rHN -kuu -mDj -bdl -jre -dXG -nqx -hzg -vBU -fIX -fnI -ipa -fYZ -vYC -noj -hpS -gyE -ekM -cJs -pOW -bJC -bMA -cfo -chn -bJD -chR -cjf -cdP -bJC -dpO -ckX -cll -bTA -clH -oFV -bVq -bSJ -vUJ -hCq -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(217,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -fTl -qlu -uKl -kiR -oxy -oQL -jsu -oQL -gqt -oxy -oxy -vTE -qbw -qbw -oVo -cMx -cMx -cMx -cMx -sHI -jao -qhT -alO -ars -amx -amx -aqf -pzX -amx -amx -amx -amx -amx -mpZ -amx -aOC -alO -sHI -tof -qhT -loP -loP -loP -loP -loP -qej -loP -loP -kNq -fJp -aPO -xhV -dJe -unQ -nxe -tjH -wPw -oUx -fVe -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ikT -jEM -aLT -beU -bdv -aLT -bry -bfu -bgY -jVr -aLT -kXa -blB -chL -lAl -aQL -bsW -xvX -aQL -bqc -noI -dJG -sZe -bdl -ntd -jCm -eqb -mLR -hdE -bdl -krZ -ixQ -kWk -xyY -nwY -bKA -fnI -cwo -scH -nzO -kxL -hpS -gyE -nzt -jhs -pOW -bJC -cfq -cgv -bJC -wqc -chN -cjf -lok -bJC -ihM -ckX -clm -hXY -bSJ -clN -clT -bSJ -xsv -gEh -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(218,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -fTl -wIu -wXJ -taw -oNK -sYm -soJ -ruR -oxy -oQL -hdy -cMx -oVo -qbw -oVo -cMx -oaP -jhQ -cMx -kYb -jao -qhT -inw -eDT -amx -amx -amx -amx -amx -amx -amx -amx -amx -aBo -amx -aoT -inw -sHI -tof -nii -loP -iwB -tOC -mHo -vqL -xBY -qwo -loP -ang -hqu -aPO -xhV -fJp -iCD -iCD -iCD -wPw -jei -fVe -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -qGC -jEM -aLT -aLT -aLT -aLT -bwe -cuY -aPo -aLT -aLT -aQL -aSa -bnA -xhQ -aQL -aQL -aQL -aQL -bqc -ubQ -fpM -bEk -bdl -tFS -bdj -bNs -nwb -mrM -bdl -ycH -pMJ -xnI -ayj -dWg -bdl -oTe -ixN -jaR -mJa -wWP -rsK -cBC -feo -ekM -pOW -bJC -bJC -bJC -bJC -qFG -pvJ -bQD -bJC -bJC -bSJ -hss -clp -hfQ -bSJ -bSJ -bSJ -bSJ -goM -tfQ -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(219,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaf -aaf -aaf -aaf -aag -aag -fTl -taw -taw -taw -wTn -qtE -tuJ -mCp -oxy -oQL -oFr -cMx -xnX -qbw -oVo -cMx -oVo -oVo -cMx -sHI -jao -qhT -inw -eDT -amx -auB -aqh -sqo -sqo -aDh -aDh -mux -aya -aBo -amx -wwJ -inw -sHI -cNC -qhT -loP -joG -sDu -kxo -wSn -xBY -lKa -loP -fvo -jei -aPO -xhV -kNq -jcE -jei -kVy -huN -dhp -fVe -aag -aag -aaf -aaf -aaf -aaf -ajY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -emA -emA -emA -emA -ikT -ikT -aLT -vZb -tnY -gjy -tIQ -cic -ceg -mdo -mJj -tnz -nYc -bnB -aVd -hMX -uqA -bES -kcl -bqc -ubQ -uPX -rHr -bdl -wIr -aQy -jAB -iYt -bMa -bdl -rDe -nUa -ufJ -rCK -cTf -bdl -bdl -nPT -nPT -bdl -bdl -bdl -jLg -uEO -ekM -pOW -hNw -wos -bMC -fcB -rUh -jLj -wPC -xZU -hNw -hmC -rQA -hjs -ivM -hcI -hcI -vPK -bSJ -cZp -gEh -tcO -tcO -tcO -tcO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(220,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -hEr -oQL -kiR -oxy -qtE -qlu -kmH -oxy -sYm -fsZ -cMx -nDH -qbw -pTI -cMx -oVo -oVo -cMx -nWf -jao -qhT -inw -qHM -emn -rdI -alO -ptf -ptf -aBi -aDi -alO -aye -aBo -amx -aBs -inw -sHI -cNC -qhT -loP -kxo -wSn -kxo -kdi -xBY -kxo -loP -nSk -jei -aPO -xhV -kNq -cke -hqu -aCJ -mbZ -jei -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -hyb -kjY -kcG -tIF -jEM -ikT -aWT -aMH -beV -gWE -udG -aOK -dRv -mdo -mJj -ljs -hsW -mFO -bJE -aRT -hSV -bES -kcl -bqc -sUk -slo -bdl -bdl -bdl -bdl -bdl -bdl -bdl -bdl -bdl -xWo -bdl -bdl -bdl -bdl -reN -dEp -reN -htk -dEp -bdl -bdl -udf -iyC -pOW -hNw -oMr -tPD -bJD -nrw -spS -lBv -pXZ -hNw -iIR -sDM -clr -nvT -aMI -wGE -erG -ewO -sEu -xhO -ffx -jhK -srl -lWY -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(221,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -hEr -xBS -taw -tTG -qtE -wIu -lga -oxy -qtE -ixu -cMx -tNY -qbw -qbw -vTE -qbw -qbw -rWy -kGS -lOn -wCe -alO -alO -alO -alO -alO -axx -amw -anO -aDj -ptf -aye -mpZ -amx -aBs -alO -sHI -tof -kGS -fTF -xBY -xBY -xBY -xBY -xBY -jGI -loP -kNq -fJp -nOx -xhV -kNq -kNq -kNq -kNq -daK -jei -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -jkN -ikT -ikT -ikT -ikT -ikT -aLT -aZf -duV -duV -eUA -bfx -bgY -mdo -mJj -byn -mUP -bnt -bJH -aRT -hSV -bES -kcl -bqc -ubQ -kwi -lZM -rSR -xss -rLK -xss -xss -uHk -dXb -dXb -dXb -cTX -xss -xss -dXb -ndm -xss -iFY -dXb -xss -xss -lZM -kYl -ekM -pOW -hNw -sZq -tPD -bJD -bOQ -chR -cjg -urN -hNw -bNC -ckX -vuL -fDh -jGR -jGR -oqu -bSJ -gEh -gEh -gEh -gEh -gEh -xhO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(222,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -oqc -smw -taw -oxy -fqq -gDJ -woB -oxy -qtE -qlu -cMx -qbU -qbw -oVo -cMx -oVo -oVo -btb -sHI -lOn -qhT -alO -gKZ -vTv -auL -alO -axy -azh -aBk -aoT -ptf -aye -mpZ -amx -aBs -alO -uSk -cNC -qhT -gdS -wSn -kXN -fuT -odD -xBY -mOg -oHx -aPO -iXB -aPO -pPt -tlv -xDT -xDT -xDT -oIr -jei -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -fGi -ikT -aLT -aLT -aLT -aLT -aLT -aLT -mhI -bjA -xSW -bAd -bCS -aLT -aLT -ksp -bOG -brH -chp -jRH -nks -aQL -aQL -lhs -bww -tHF -cvx -cvx -bKJ -cvx -cvx -cvx -cvx -vub -vub -vub -owW -vub -vub -vub -cvx -cvx -cvx -bKJ -cvx -cvx -cvx -xQz -bFX -pmd -bJC -bJC -bMD -bJD -vND -chR -tzr -kIP -bJC -bSJ -bTJ -pUf -hji -rPO -ixD -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -gEh -dFL -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(223,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -taw -taw -taw -wTn -oQL -oQL -lUQ -oxy -hOo -iDs -cMx -qbU -qbw -rYU -cMx -pVh -mSl -btb -sHI -jao -qhT -alO -arz -atq -aoT -alO -aOG -amA -kDH -aOB -laQ -arr -iav -atc -aOF -alO -sHI -cNC -qhT -gdS -lBg -dXd -loP -loP -xeU -loP -loP -kNq -hnt -aPO -hrh -nlQ -eXi -nlQ -nlQ -dBk -jei -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -jEM -ikT -aLT -bBg -vPv -oTA -vPv -rAN -gRS -aNc -aNQ -aOL -iIO -hRd -aLT -aQL -bmh -bnX -aRo -brA -tFP -lQz -aQL -bqc -qIf -bqc -bbs -cbh -xYP -bbs -gsm -bCM -rbF -cJE -bOT -dLt -bRe -iFD -vRa -vub -bPL -bCM -xSM -cgE -gsm -bCM -bbr -uPE -ekM -pOW -bJC -jht -jZv -bJD -cgy -lbX -uxp -bJC -bJC -bSZ -eIG -cll -bUN -sAc -oQB -mAV -hzu -qNd -hzu -hcI -bSJ -xhO -xhO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(224,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -oQL -mOE -gUG -oxy -oQL -cMx -cMx -fVk -cMx -cMx -cMx -uyQ -qbw -oVo -cMx -cMx -cMx -cMx -sHI -jao -qhT -alO -arz -atq -aoT -alO -axA -amA -aBl -aoT -aFl -arm -aIU -aMq -aOG -alO -sHI -tof -qhT -loP -loP -loP -loP -tGd -vyI -lPB -oHl -jWh -yat -rXq -yat -yat -kNq -kNq -kNq -lfM -oUx -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -jEM -jEM -aLT -nuN -nuN -rfa -ipM -ehx -cBs -vme -bwf -tig -nex -aPi -aLT -tDZ -gip -uTv -bKC -bnt -jdm -iaq -aQL -bqc -qIf -bqc -bbs -bKD -vTS -bbs -ccQ -bCN -rbF -qlz -xYf -skn -bQX -ijQ -cLl -qlz -tez -bCN -ccQ -cgE -ccQ -bCN -bbr -uPE -ekM -pOW -bJC -cjC -jZv -lLC -nEo -nZy -tzr -lbf -bJC -bTa -bbu -iWc -bUN -bVb -wty -pWb -hDx -rYp -oEo -uYH -bSJ -xhO -lMO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -oxy -oxy -bCv -oxy -oQL -cMx -aOS -gNI -eTm -cMx -nDH -oVo -qbw -oVo -oDa -yfn -nkc -cMx -sHI -jao -qhT -alO -arz -atq -aoT -alO -alO -alR -aBm -alR -alO -xBe -xBe -xBe -xBe -xBe -sHI -tof -qhT -jWh -eFK -wGd -cZW -pZK -hSk -hSk -uIv -jWh -dnh -bct -iDa -yat -tiY -qAK -xGK -lfM -jei -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -oPF -jEM -aLT -vug -iSZ -muy -vug -vug -tVq -dgE -lJO -uRo -uIJ -aLT -aLT -hWr -gip -xlk -uuj -bRg -dEk -aQL -aQL -ylN -qIf -bqc -bbs -ydM -xYP -bbs -ccQ -cdn -rbF -qlz -gYe -skn -bTx -bKQ -tXM -qlz -tez -bpV -ccQ -cgE -ccQ -cdn -bbr -uPE -ekM -pOW -bJC -bJC -kGF -chq -bRf -onN -cjg -qki -bJC -bSJ -bTM -bUq -rPE -gnu -wty -wWX -wWX -yle -rNd -rNd -bSJ -xhO -xHa -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(226,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -wTn -oQL -qmq -oQL -nXo -cMx -aOS -guP -mHT -cMx -kpL -oVo -qbw -oVo -oVo -oVo -iIU -cMx -uSk -jao -kGS -xHt -arm -ats -auO -awB -axB -ayV -auu -aoT -aFm -xBe -aIV -qqr -arH -xBe -sHI -tof -qhT -vXd -duF -hSk -hSk -vyI -hSk -hSk -uIv -jWh -tFJ -wSB -uBG -yat -jei -ltm -oAT -lfM -cmV -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -rIV -nvI -aLT -iPS -vAE -iKw -vAE -wMG -oSy -wBr -efK -lWG -uIJ -mdo -mJj -bHp -bIU -eyl -tAN -jOi -aVf -bES -kcl -bqc -qIf -bqc -bbs -dvs -xYP -bbs -cdm -bCM -rbF -qlz -fOz -skn -bTx -bTx -dFF -qlz -tez -bCM -ccQ -cgE -ccQ -bCM -bbr -uPE -ekM -pOW -hNw -oMr -lef -xRj -wJD -cjE -ozT -pDB -hNw -bNC -ckX -qgN -bTN -sdC -ivM -gEo -scy -vSW -scy -kPJ -bSJ -xhO -eeR -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(227,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -oxy -cMx -cMx -orx -cMx -cMx -dtu -qbw -txf -ncx -whO -pJS -whO -whO -whO -whO -whO -bYL -dlT -qHD -qhT -alO -arA -att -auS -alO -lXg -amA -aBn -aDm -aFn -xBe -azo -aJg -abR -xBe -sHI -tof -wCe -jWh -oih -khE -ctx -vyI -vyI -kpQ -vSE -jWh -dhA -iWn -mnB -yat -jei -ltm -ejj -lfM -jei -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -sEg -kDd -aLT -aLT -aLT -aLT -aLT -aLT -fbb -nTl -bwf -vZt -bEG -mdo -mJj -fIM -fIM -sXw -sXw -vfx -aVf -bES -kcl -lhs -uvh -lhs -kFY -jmK -bDL -bbs -ccQ -bCN -rbF -vub -odN -odN -gcN -odN -odN -vub -tez -bCN -ccQ -cgE -ccQ -bCN -jhb -kAj -bFX -hza -hNw -oMr -ltI -vfa -wdz -wdz -nCf -nCf -hNw -iIR -uMS -qmk -rtV -sgR -tvN -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -qid -lNk -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(228,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -oxy -cMx -cMH -qvF -lat -cMx -aOS -tlM -dan -cMx -cMx -cMx -fVk -cMx -cMx -cMx -cMx -cMx -nWf -cNC -qhT -wDM -wDM -wDM -wDM -wDM -axD -amA -aBo -axe -anO -nFX -atv -auV -amE -xBe -sHI -tof -qhT -jWh -jWh -uUz -jWh -gIJ -qbZ -jWh -jWh -jWh -tFO -wSB -flD -yat -xQe -jei -kVy -huN -dhp -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -eTD -ikT -aLT -bBg -vPv -oTA -vPv -rAN -jNK -aNc -bwf -iIO -cqz -mdo -mJj -sEd -wDK -sEd -wDK -bRV -bSe -bES -kcl -bqc -qIf -bqc -bBd -aPr -bfl -bSb -byw -bkU -bAY -pur -bxm -bPM -jmK -bRa -bxm -pur -byw -bzI -bAY -bSb -bEa -bFp -bBd -uPE -ekM -pOW -hNw -sZq -lwJ -cgA -oaW -yiW -oaW -yiW -hNw -iIR -koI -bUr -pQN -snR -aNT -qNd -hzu -mAV -hzu -hcI -bSJ -rqz -xhO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(229,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -lmq -cMx -rBY -pTY -ueY -cMx -aOS -gNI -aPg -cMx -uiG -rTZ -tfb -tfb -tfb -tfb -tfb -ptK -sHI -cNC -qhT -wDM -aOM -aoW -aty -wDM -axE -amA -aBp -aDn -atc -nFX -atv -auV -amE -xBe -sHI -cNC -qhT -jWh -xXa -xXa -xXa -pZK -cKL -jbH -rJh -jWh -pld -vhb -tie -yat -cfm -jei -aCJ -emU -jei -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -efP -ikT -aLT -iDf -iDf -vUb -nuN -nuN -tVq -kiV -bwf -nVa -kJi -aLT -aLT -aQL -aQL -aQL -aQL -csZ -odB -aQL -aQL -bqc -sUk -ade -bBe -bFq -bfm -bhg -bvF -cdo -bvF -bvF -bvF -bRa -bRc -bPM -bvF -bvF -bvF -cdo -bvF -bCD -bEb -bFq -bBe -hWD -iyC -pOW -bJC -bJC -rbH -cEC -bJC -bJC -bJC -bJC -bJC -bSJ -hTc -bUr -ycd -sAc -jrR -uYH -oEo -yfm -vio -vio -bSJ -gEh -xhO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(230,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -oxy -cMx -cMx -cMx -cMx -cMx -cMx -fVk -cMx -cMx -bNM -wkX -jhx -jhx -jhx -jhx -dnH -gpc -tzF -uez -qhT -wDM -uto -aoX -auU -aHu -aFt -lEj -nRX -aDo -aFr -xBe -nNY -qKi -abR -xBe -uSk -wHr -tzF -dEt -soP -pDr -soP -pDr -soP -eoG -uIv -jWh -yat -rXq -yat -yat -kNq -fJp -ekz -lfM -oUx -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -uzv -ikT -aLT -cjc -iDf -bUp -cjc -cjc -cBs -bsU -bwg -bCP -jKK -aLT -pqK -uAW -pqK -isa -qZX -vil -bpC -qZX -aQL -pjP -qIf -lfz -bbs -oPH -oPH -oPH -oPH -bbs -bJf -bJf -bJf -bJf -xba -dNt -dNt -dNt -dNt -bbs -krA -krA -krA -krA -bbs -wMI -ekM -oHt -bJC -lbf -cft -rQV -ohj -wwr -cDs -wwr -lbf -bSJ -gGf -qyi -tdf -sSC -wty -vio -fXN -yfm -fXN -fXN -bSJ -xhO -dFL -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(231,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -wTn -mOE -sWp -nUm -moL -taw -mDJ -owg -xUA -ozz -vFv -rob -owg -owg -nwU -owg -owg -ptK -sHI -tof -qhT -wDM -aOQ -fxI -nLJ -aHv -aya -amx -atq -aDr -aFu -xBe -azp -qJf -anV -xBe -sHI -cNC -qhT -jWh -iqH -khE -khE -khE -ovi -iat -eim -jWh -kNq -spd -kNq -kNq -xIw -sVK -tlv -huN -jei -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -hfO -ikT -aLT -iPS -vAE -iKw -vAE -wMG -tIQ -btc -bwh -uMl -tKY -dII -mLF -mLF -viS -sXw -sXw -vil -bpC -qDq -kbc -bqc -ubQ -bqc -bbs -bdw -bfo -rWL -wLm -nHJ -wLm -wLm -wLm -bSa -xba -bSa -wLm -wLm -wLm -nHJ -wLm -lJu -bEd -bFs -bbs -uPE -ekM -pOW -fzq -oXb -cft -rQV -wdz -wdz -fDJ -mpJ -mpJ -bZU -koI -qFK -pmq -sUj -aNT -vSW -scy -gEo -scy -kPJ -bSJ -gEh -pFr -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(232,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -fTl -oxy -oxy -tIN -oxy -oxy -kiR -owg -owg -uKV -mDJ -bNM -iEr -owg -eNi -eNi -eNi -eNi -eNi -sHI -tof -wCe -wDM -aOH -aJf -aMw -wDM -xsl -aya -atq -aDr -aFv -xBe -xBe -xBe -xBe -xBe -sHI -cNC -xmP -jWh -jWh -jlQ -jlQ -jWh -thV -uWV -uIv -oSx -kNq -oUx -kNq -kNq -fJp -ekz -hqu -jei -qDS -fVe -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -jkN -ikT -aLT -aLT -aLT -aLT -aLT -aLT -sCD -pXl -bxB -uWY -wEd -jvp -oyG -gBc -gBc -gBc -gBc -ngA -koC -koC -xGE -jno -fqw -bqc -lgy -ccb -xYP -bGn -mlm -mlm -mlm -bxn -mlm -mlm -xba -mlm -mlm -bxn -mlm -mlm -mlm -rXk -xYP -jew -laU -uPE -dEL -rzy -uCM -lNw -eFj -iQi -lNw -lNw -lNw -lNw -vej -erh -rqE -qWt -fXN -rEv -rll -bSJ -bSJ -bSJ -bSJ -bSJ -bSJ -gEh -kMR -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(233,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aah -aah -aah -aag -aag -aag -fTl -pWw -hbE -rlA -soJ -soJ -taw -ptK -afX -ptK -ptK -bNM -rtd -owg -eNi -olO -wiG -nWN -eNi -sHI -tof -qhT -wDM -wDM -wDM -wDM -wDM -axI -amA -amx -aDr -aFw -inw -aJh -arq -ufx -alR -sHI -cNC -wCe -jWh -hSk -hSk -cRi -jWh -upR -fCL -uIv -vVw -iSV -jei -oYr -jei -aPO -aPO -aPO -gtQ -wiO -fVe -aag -aag -aag -aah -aah -aah -afm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -hyb -jEM -jEM -jEM -jEM -hyb -jEM -aLT -cjc -cjc -uJU -iDf -cjc -aLT -lDV -fZZ -hEb -dlu -qDq -jOx -bpC -qDq -aQL -nYR -bww -lhs -lgy -bsG -xYP -rWL -dMB -dMB -dMB -dMB -dMB -fsV -xba -fsV -dMB -dMB -dMB -dMB -dMB -lJu -xYP -hLI -laU -gyw -uNQ -gyw -bJC -gkd -cfo -lkM -oXb -oXb -oka -bKM -tEO -bSJ -fXN -fXN -kPJ -fXN -mvy -bSJ -enY -srl -gEh -xhO -xhO -xhO -jay -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(234,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -fTl -prX -oYs -rWx -biC -qlu -taw -bKm -hsr -mDJ -ptK -bNM -iEr -fhH -eNi -ueG -rPt -jyE -eNi -sHI -cNC -qhT -hwC -rcS -amx -swN -alO -axL -amA -amx -aDr -aFy -inw -aJi -azs -atq -alR -sHI -cNC -qhT -mDG -tst -uUe -hSk -bSN -pZK -fCL -uIv -lFA -kNq -jei -kNq -kNq -jei -jei -gYU -oGi -dVR -fVe -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -emA -emA -emA -emA -jEM -ikT -jEM -aLT -qHe -dKX -meY -qHe -dKX -aLT -iMr -wDK -iMr -wuq -ksp -jOx -bpC -ksp -aQL -bqc -wqO -wxD -cau -bCG -cgE -bJe -jmK -xYP -xYP -xYP -xYP -jmK -xba -jmK -xYP -xYP -xYP -xYP -jmK -hcw -cgE -yht -blq -ddL -eZR -uPE -bJC -qwL -kUo -lkM -oaW -yiW -oaW -yiW -kIP -bSJ -vSW -scy -oer -vSW -scy -bSJ -mCE -qid -hCq -tcO -tcO -tcO -tcO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(235,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -fTl -fTl -fTl -fTl -fTl -fTl -fTl -qJx -hsr -mDJ -ptK -bNM -iEr -owg -eNi -iKD -rPt -rPt -eNi -sHI -cNC -qhT -alR -amA -atq -swN -alO -alO -cHc -atq -aDs -alO -alO -aJj -aMD -atq -alR -sHI -cNC -qhT -mDG -tZZ -gLz -hSk -gIJ -ovi -fCL -lYk -bYn -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -oPF -ikT -jEM -aLT -meY -meY -meY -meY -meY -meY -aQL -aQL -aQL -aQL -aQL -pyl -pDt -aQL -aQL -bqc -ubQ -bqc -lgy -ccN -xYP -rWL -wLm -wLm -wLm -wLm -wLm -bSa -xba -bSa -wLm -wLm -wLm -wLm -wLm -lJu -xYP -wbV -laU -uPE -vuV -uPE -bJC -bJC -vLA -oHc -bJC -bJC -bJC -bJC -bJC -oer -oer -oer -oer -oer -oer -oer -uVp -gEh -pFr -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(236,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -aag -aag -aag -aag -aag -aag -cuC -wdJ -hsr -hsr -ptK -krS -rtd -owg -eNi -eNi -eNi -gIh -eNi -hGb -tof -qhT -alR -amA -atq -sOx -alO -axM -amA -atq -aDr -aFz -inw -amA -ayl -amx -alR -sHI -cNC -qhT -jWh -jmQ -vcu -lIU -jWh -thV -uWV -tiK -bYn -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -wtn -ikT -ikT -ikT -ikT -ikT -ikT -ikT -jEM -ikT -jEM -aQL -qZX -tDZ -qZX -aSE -bpC -qZX -aQL -bqc -ubQ -bqc -lgy -ccb -xYP -bGn -mlm -mlm -mlm -bxn -mlm -mlm -xba -mlm -mlm -bxn -mlm -mlm -mlm -rXk -xYP -jew -laU -uPE -vuV -uPE -bJC -lbf -cfo -wuU -lbf -lbf -lbf -bJC -gEh -cmN -gEh -xhO -dzX -foS -xhO -gEh -gEh -gEh -gEh -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(237,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aah -aah -aah -aah -aah -aah -aah -aag -cuC -evk -hsr -mDJ -ptK -bNM -iEr -owg -eNi -aWb -dyK -vzK -wYY -sHI -tof -qhT -alR -amA -atq -sOx -alO -axN -azq -auy -aDB -aFA -inw -aJl -amx -atq -alR -sHI -cNC -qhT -mDG -snE -sGL -hSk -bSN -pZK -fCL -dbe -bYn -aag -aag -aag -aag -aag -aah -aah -aah -aah -aah -aah -aah -afm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -pGj -uoj -jEM -jEM -jEM -jEM -fBo -jEM -jEM -jEM -jEM -aQL -dlu -dlu -qDq -aSE -vqY -qDq -bTb -bqc -ubQ -bqc -bbs -ccd -ccN -rWL -dMB -uVD -dMB -dMB -dMB -fsV -xba -fsV -dMB -dMB -dMB -uVD -dMB -lJu -huK -jeQ -bbs -uPE -vuV -uPE -xSw -oXb -cfo -wuU -gkd -oXb -oXb -bJC -gEh -xhO -gEh -xhO -gEh -hWH -xhO -gEh -xhO -xhO -rhD -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(238,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rAC -bdH -bdH -bdH -bdH -bdH -aad -cuC -apB -cBd -jRK -ptK -bNM -iEr -owg -eNi -tii -eJX -sAC -wYY -sHI -tof -qhT -alR -amA -amx -apa -alO -axO -azr -aBr -aDC -aFB -alO -aJk -amx -atq -alR -sHI -cNC -qhT -mDG -tZZ -cBj -hSk -gIJ -ovi -fCL -tiK -bYn -aag -aag -aag -aag -ajZ -opJ -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -emA -emA -emA -emA -emA -emA -emA -emA -emA -ikT -jEM -aQL -dlu -qDq -qDq -osA -bcH -cHl -bTb -lhs -bww -lhs -bbs -cdp -cdp -jks -cdp -bbs -uXy -uXy -uXy -uXy -xba -vDd -vDd -vDd -vDd -bbs -fJO -fJO -fJO -fJO -bbs -gyw -uNQ -gyw -xSw -cLc -ejo -niY -gkd -oXb -oXb -bJC -xhO -gEh -gEh -tcO -tcO -ucy -tcO -tcO -tcO -tcO -tcO -tcO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(239,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aad -cuC -ptK -ptK -ptK -ptK -bNM -iEr -owg -eNi -sjj -fzP -sAC -wYY -sHI -cNC -qhT -alR -amA -atq -fhf -alO -axQ -azt -auA -aDD -aFD -inw -xEO -xEO -lnP -alR -sHI -cNC -wCe -jWh -qLs -qLs -cRi -jWh -upR -uWV -uIv -bYn -bYn -bYn -aag -aag -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -qGC -hyb -aQL -ksp -ksp -rou -qDq -dlu -dlu -bTb -bqc -ubQ -bqc -bqc -bqc -bqc -bqc -bqc -dYb -bqc -fpI -bqc -bqc -tGS -uPE -uPE -uuT -uPE -fRL -uPE -uPE -uPE -uPE -uPE -uPE -vuV -uPE -xSw -gkd -oXb -oXb -kIP -qer -kIP -bJC -xhO -wYd -pFr -tcO -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 -"} -(240,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -hzc -hzc -hzc -cuC -dbw -uGQ -bNM -rtd -owg -eNi -fcM -uzE -qsL -nim -noe -pqY -qhT -alR -amA -atq -cSm -alO -elf -amA -atq -aDE -asT -aHw -iWR -iWR -kbx -alR -sHI -cNC -qhT -jWh -jWh -jlQ -jlQ -jWh -lhJ -fCL -uIv -oXJ -kPR -bYn -hzc -hzc -hzc -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ikT -jEM -aQL -aQL -aQL -aQL -ksp -rou -ksp -aQL -bqc -qas -qUO -qUO -qUO -reu -fLf -reu -reu -reu -kkN -reu -reu -uTP -kEE -kEE -dCM -kEE -kEE -kEE -ulH -kEE -wzJ -wzJ -wzJ -nmH -xui -bJC -kIP -qer -kIP -bJC -bJC -bJC -bJC -gEh -gEh -gEh -tcO -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 -"} -(241,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -yjq -bZc -iHc -sbq -rLk -hsr -bNM -iEr -owg -eNi -xlC -gyO -kTN -eNi -uSk -cNC -qhT -alR -amA -atq -civ -dof -atq -arm -atc -atc -atc -inw -xEO -xEO -aOV -alR -sHI -cNC -qhT -jWh -wFQ -bop -vyI -jnp -thV -fCL -uIv -hSk -vVw -jzD -iHc -bZc -mZF -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -emA -ikT -jEM -jEM -hYf -jEM -oBr -oBr -oBr -oBr -oBr -ovQ -bqc -bqc -bqc -bqc -nci -mww -nci -nci -bqc -rVC -bqc -bqc -tGS -uPE -uPE -tIl -uPE -cJs -cJs -vuV -cJs -uPE -uPE -uPE -uPE -pqw -bJC -bJC -bJC -bJC -bJC -xhO -xhO -xhO -gEh -xhO -xfq -tcO -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 -"} -(242,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -yjq -jgw -wbJ -sbq -rLk -hsr -bNM -iEr -fhH -eNi -oNb -iFC -qAA -eNi -sHI -tof -qhT -alR -arK -atc -civ -kwd -atq -atq -amA -aDH -aFI -alO -aJq -aMG -aOW -alR -sHI -cNC -qhT -jWh -bXy -bop -vyI -vyI -vyI -fCL -uIv -hSk -vVw -jzD -wLi -jgw -mZF -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -emA -kAv -jEM -ikT -ikT -jEM -jEM -gCu -ikT -ikT -oBr -oBr -qPn -oBr -oBr -jxX -knl -pum -jAj -kKY -kKY -oJk -lNR -lNR -oJk -lNR -lNR -oJk -cNm -oGh -far -vDo -nnr -rKt -ljv -ljv -sUi -ljv -ljv -xhO -xhO -xhO -xhO -xhO -xhO -xhO -xhO -xhO -srl -tcO -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 -"} -(243,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -hzc -hzc -hzc -cuC -vvy -uGQ -bNM -rtd -owg -eNi -eNi -eNi -eNi -eNi -sHI -tof -qhT -alO -alO -alO -alO -alO -azi -azi -ets -kvh -rka -alO -alO -alO -alO -alO -sHI -cNC -qhT -jWh -wFQ -bop -vyI -wKc -thV -uWV -uIv -oXJ -uGc -bYn -hzc -hzc -hzc -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -emA -qFS -pPG -jEM -jEM -jEM -jEM -gCu -jEM -jEM -tXn -jEM -jEM -jEM -oBr -oBr -sqg -rPQ -sqg -oJk -oJk -oJk -oRW -mxT -pHc -eVE -jMy -oJk -oJk -oJk -sqg -mgu -sqg -ljv -ljv -xhO -gEh -xhO -xhO -gEh -gEh -gEh -xhO -xhO -xhO -xhO -gEh -aEr -keO -tcO -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 -"} -(244,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aad -aag -aag -cuC -cuC -cuC -bNM -iEr -owg -owg -dWX -owg -owg -ptK -knU -oOZ -hdP -aqq -aPa -eky -eky -alO -aqY -aqY -alO -aqY -aqY -alO -eky -eky -aPa -aqq -knU -oOZ -doX -jWh -xXa -xXa -xXa -xXa -pZK -fCL -uTZ -bYn -bYn -bYn -aag -aag -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -emA -twp -iyE -ecb -ikT -ikT -ikT -ctp -ecb -jEM -jEM -jEM -jEM -ikT -ikT -oBr -fcS -gdJ -oyR -oJk -nHL -wfx -ijf -osI -qXk -fie -tRs -pqP -fqC -oJk -ppn -nAY -cjt -ljv -ceY -gIm -gEh -gEh -gEh -xhO -wra -xhO -gEh -xhO -gEh -gEh -sOD -eMx -xgr -tcO -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 -"} -(245,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aae -aah -aah -aah -aag -uMc -vFv -wOt -odl -jhx -keR -jhx -keR -dwI -tzF -eIY -vER -hal -uYg -nau -uYg -uYg -bXf -aDO -aDO -aDO -gQO -uYg -uYg -nau -uYg -hal -sVv -eIY -tzF -mPh -soP -tWi -soP -pDr -tWi -tpd -eim -pql -aag -aah -aah -aah -afm -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -emA -emA -emA -emA -emA -emA -emA -vgw -sqg -sqg -sqg -mpP -sqg -oBr -qGC -oBr -fcS -gdJ -oyR -oJk -uZF -xoj -xoj -osI -qXk -fie -pUj -xoj -sfV -oJk -pkA -nAY -cjt -ljv -gEh -ljv -sqg -mpP -aep -aep -aep -dKL -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -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 -"} -(246,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aad -uMc -bNM -rmf -uZH -bFt -kPG -kPG -cVw -ptK -eJg -bkb -pvi -aqq -eky -aNl -eky -eky -nCT -vsh -vsh -vsh -ydY -eky -eky -aNl -eky -aqq -eJg -lqL -pvi -jWh -tim -uWV -ttd -nLk -rCD -eYR -uIv -pql -ajZ -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -vgw -wct -hqc -sqg -rwB -lKM -sqg -nSq -oBr -sKf -gdJ -cjt -pRZ -ish -ish -ish -kzC -jUl -wud -ish -ish -ish -pRZ -fcS -nAY -jOE -ljv -mPc -sqg -qEL -vmE -ggQ -afk -afk -dKL -aag -aag -ajZ -aaa -aaa -aaa -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 -"} -(247,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -aac -aag -cuC -blJ -pfc -ptK -ptK -ucp -cIW -ptK -ptK -xga -kgV -xga -aHe -jlT -exi -eky -eky -eAC -aBu -aBu -aBu -eAC -eky -eky -ins -wRP -aHe -eZm -eZm -eZm -jWh -jWh -sWC -jWh -jWh -jWh -jAJ -lAu -bYn -aag -ajY -aaa -aaa -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 -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aag -aag -vgw -wct -hqc -sqg -eKy -wQA -sqg -jEM -oBr -uYn -jaM -oXM -kvf -rDy -uVc -bxN -cYN -nhr -vuD -skL -dTr -gfG -mkP -muQ -ojh -nxx -ljv -xhO -sqg -gEC -skC -aWZ -bLx -bMJ -dKL -aag -aag -ajZ -aaa -aaa -aaa -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 -"} -(248,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -cuC -cuC -cuC -bNM -ofK -ptK -uXL -gPc -trB -exy -ptK -fLl -fLl -fLl -eky -eky -aNl -eky -uNV -aHe -aDQ -aDQ -aDQ -aHe -uNV -eky -aNl -eky -rqj -eZm -jYm -aZI -jWh -duz -hXG -htG -doU -jWh -lbB -uIv -bYn -bYn -bYn -aaa -aaa -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 -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aae -aah -aah -vgw -utn -hqc -hqc -eqL -vxu -sqg -mpP -sqg -qWQ -gdJ -cjt -pRZ -wuB -wuB -qAs -dIH -nKP -uTV -sHx -vgv -wuB -pRZ -fcS -nAY -cjt -sqg -mpP -sqg -efC -yaF -aep -aep -aep -dKL -aah -aah -afm -aaa -aaa -aaa -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 -"} -(249,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -cuC -uiG -tfb -rFy -ofK -ptK -uXL -eet -fcP -pDh -ptK -aqZ -aqZ -ptQ -aMT -aMT -dPm -qeF -aHe -aHe -aDX -yge -aEm -aHe -aHe -okg -dPm -aMT -aMT -hbp -mwP -mwP -jWh -axR -mIP -tcZ -fWi -jWh -lbB -cKL -xXa -xoO -bYn -aaa -aaa -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 -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vgw -noP -hqc -hqc -xNg -spH -sqg -aFe -sqg -scE -gdJ -acy -oJk -jRc -xoj -eKQ -osI -xrI -fie -fsR -lkV -quS -oJk -bcM -nAY -mFP -sqg -pCq -sqg -gEC -unx -ggQ -bLy -bLy -dKL -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(250,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -cuC -bNM -rmf -luY -ncp -ptK -cQg -wxj -lht -rYv -ptK -haO -pKB -fLl -svf -arV -wZX -eky -aDQ -ayi -eky -aBx -eky -jlX -aDQ -eky -wZX -arV -vUh -eZm -xUy -mwP -jWh -vpv -pgw -rmE -fWi -jWh -xPZ -pcv -eYR -uIv -bYn -aaa -aaa -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 -aKQ -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vgw -gOC -nou -nou -dQA -sKM -uuD -eYD -uuD -bSH -gLD -cjt -oJk -oJk -lwp -xoj -osI -rYh -fie -xoj -ehc -oJk -oJk -gNO -vTT -heS -uPP -hlH -uPP -wVA -hJg -aWZ -bLz -bMK -dKL -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(251,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -cuC -aeM -ofK -ptK -ptK -ptK -ptK -ptK -afX -ptK -ptK -haO -fLl -fLl -lDn -arV -wZX -eky -aDQ -pyy -eky -eky -eky -dLc -aDQ -eky -wZX -arV -wkA -eZm -eZm -mwP -jWh -jWh -kLc -jWh -jWh -jWh -jWh -jWh -lbB -oCf -bYn -aaa -aaa -bdH -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 -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dKL -aep -aep -aep -ikv -hqc -vZf -ykI -vZf -aEo -gdJ -trh -hgo -oJk -sVT -xoj -osI -rYh -fie -xoj -bmp -oJk -haD -jTB -nAY -iUm -vZf -bYF -vZf -fiQ -pgN -aep -aep -aep -dKL -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(252,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -uMc -bNM -ofK -fLl -uxl -haO -ebf -haO -aqZ -tot -haO -qqS -fLl -xrq -vVu -arV -wZX -eky -aHe -jMQ -eky -eky -eky -dEn -aHe -eky -wZX -arV -oIt -xrq -eZm -qHG -mwP -xQW -vJR -mwP -hkz -ckj -oaw -eZm -lbB -uIv -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dKL -afk -aWo -aWZ -iyF -vrR -sqg -mpP -sqg -dYC -gdJ -elx -cjt -pRZ -xoj -xoj -osI -xrI -fie -xoj -xoj -pRZ -fcS -hMG -qQy -erF -sqg -mpP -sqg -fLu -hEw -aWZ -bLA -afk -dKL -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(253,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -uMc -bNM -ofK -fLl -uxl -haO -uLG -haO -aqZ -pbo -haO -xLn -fLl -vlk -mKy -aMT -svl -pzJ -qDt -uYg -vsh -oPf -vsh -uYg -qDt -pzJ -sQO -aMT -wNS -vlk -eZm -oHg -uiK -mwP -vJR -mwP -jrB -eoK -xTG -eZm -lbB -uIv -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dKL -aVo -aWp -aWZ -qAB -gEC -sqg -aIh -eTb -kkW -iwf -uFg -rEm -rnF -oFm -oFm -fVo -jUF -nxb -oFm -oFm -glH -vXo -gWu -xMl -lft -eTb -aIh -sqg -siN -cjt -ggQ -afk -bML -dKL -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(254,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -uMc -bNM -rtd -ptQ -aqZ -aqZ -aqZ -aqZ -aqZ -leM -haO -iYm -fLl -fLl -wRk -eky -wZX -vUh -aHe -oxU -bsy -oir -gzw -shh -aHe -svf -wZX -eky -wuk -eZm -eZm -bjt -eIN -mwP -ksw -ksw -ksw -ksw -ksw -hbp -uWV -uIv -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dKL -afk -afk -ggQ -pYS -ivS -sqg -ppM -eTb -hbs -xJV -elx -jnI -oJk -xef -dPQ -ams -eni -nri -gMd -toO -oJk -nYn -elx -mDL -fSF -eTb -ppM -sqg -lvh -iks -aWZ -bLC -afk -dKL -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(255,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -cuC -blJ -pfc -fLl -fLl -fLl -fLl -rht -aqZ -aqZ -aqZ -aqZ -aqZ -ptQ -qYG -atM -bGc -atK -aHe -aHe -aHe -aHe -aHe -aHe -aHe -atM -bGc -atK -qYG -hbp -ksw -ksw -rHB -ksw -vJR -rPq -eZm -eZm -eZm -eZm -jAJ -lAu -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dKL -dKL -aep -aep -mkL -gEC -sqg -ppM -eTb -hsy -hsy -baJ -kbw -hsy -ldc -lNR -lNR -lNR -lNR -lNR -ldc -hsy -foC -kph -hsy -hsy -eTb -eUe -sqg -wWl -trh -aep -aep -dKL -dKL -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(256,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -cuC -bNM -tgK -tfb -wuT -lMx -gJF -gJF -gJF -gJF -gJF -gJF -gJF -gJF -aPw -avu -mhG -cFn -cYu -aHe -fdX -wcR -xJh -aHe -qYu -dxK -dPC -aMU -aPw -wxy -wxy -wxy -wxy -wxy -wxy -wxy -wxy -jFY -qKY -jHL -wOK -uIv -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -vgw -usZ -wpS -fZA -fEe -sqg -ppM -ppM -hsy -shL -uXk -mlF -hsy -ckZ -hmv -hmv -dTS -hmv -hmv -ckZ -hsy -tos -uXk -tkn -hsy -aIh -ppM -sqg -fEe -nqW -kfI -vFH -vgw -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(257,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -cuC -riJ -kHY -uhM -kdv -lkm -cuC -aag -aag -aag -aag -aag -aag -aag -aPw -aqJ -aBu -odu -aMT -aEg -aDO -aDO -aDO -aEg -aMT -odV -aBu -aqp -aPw -aag -aag -aag -aag -aag -aag -aag -bYn -dRs -uAl -rDb -qjV -rID -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -vgw -ckW -vgw -vgw -vgw -vgw -aIh -aIh -hsy -wed -uXk -mlF -jWb -njv -aPU -aPU -aPU -aPU -aPU -lSK -jWb -tos -uXk -wed -hsy -qBS -lib -vgw -vgw -vgw -vgw -ckW -vgw -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(258,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -cuC -cuC -umy -iKZ -pnL -cuC -cuC -mNX -mNX -mNX -mNX -mNX -mNX -cus -aPw -aPw -atM -bGc -atK -avu -aMT -arV -aMT -aMU -atM -bGc -atK -aPw -aPw -mNX -mNX -mNX -mNX -mNX -mNX -qOk -bYn -bYn -cWE -kHS -rID -bYn -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aae -aah -aag -aag -aag -nic -tmQ -ppM -hsy -txS -bVN -oGJ -bQw -rJn -mVr -mZL -mZL -mZL -gSa -wFj -iOL -uqh -iAE -sct -hsy -iWa -fZR -nic -aag -aag -aag -aah -afm -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(259,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aad -cuC -mkH -rtd -fcP -cuC -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -aPw -vgD -mhG -had -eAL -pzJ -oPf -pzJ -had -eAL -dPC -ihX -aPw -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -bYn -kcA -uWV -uIv -bYn -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -nic -aIh -aIh -hsy -fCT -uXk -rae -jIV -pzM -mtZ -hmv -hmv -hmv -fQn -pzM -nac -xNf -uXk -slv -hsy -aIh -aIh -nic -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(260,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aad -cuC -vRu -ngU -ssU -cuC -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -aPw -aqJ -aBA -aqp -avu -eky -dPm -eky -aMU -aqJ -aBA -aqp -aPw -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -bYn -thV -uWV -uIv -bYn -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -nic -ppM -ppM -hsy -igs -nCn -oGJ -pJm -taz -vaZ -kYL -hmv -sCV -rjO -vUO -hTp -uqh -pJr -slv -hsy -aIh -aIh -nic -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(261,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aad -uMc -gbs -iEr -hFw -uMc -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -aPw -aHe -aHe -aHe -mtD -eky -wZX -eky -nKq -aHe -aHe -aHe -aPw -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -pql -thV -fCL -uIv -pql -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -nic -aIh -ppM -hsy -hsy -wTB -mlF -uXk -oym -gSa -mtZ -hmv -fQn -wSV -dBC -uXk -tos -slv -hsy -hsy -ppM -eUe -nic -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(262,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aad -uMc -nrO -iEr -fcP -uMc -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -aPw -aHe -aHe -aHe -avu -eky -wZX -eky -aMU -aHe -aHe -aHe -aPw -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -pql -thV -fCL -uIv -pql -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -nic -aIh -aIh -aIh -hsy -ygP -mlF -hsy -hcX -fQn -mtZ -hmv -fQn -mtZ -hmv -hsy -beL -ygP -hsy -cWb -aIh -aIh -nic -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(263,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aad -uMc -aVC -iEr -fcP -uMc -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -jbq -kRg -uRs -aDO -qqu -eky -aNl -eky -dFk -aDO -nPY -kRg -jbq -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -pql -thV -fCL -uIv -pql -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -nic -ppM -ppM -ppM -hsy -ylh -opH -hsy -pvI -fQn -qoR -aPU -rjO -mtZ -njS -hsy -iEw -ylh -hsy -dDT -ppM -dDT -nic -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(264,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -aad -cuC -mJx -rtd -odb -cuC -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -jbq -hBL -dID -eky -eky -nJu -aNl -eky -eky -eky -etn -hBL -jbq -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -bYn -thV -uWV -oCf -bYn -ajZ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -aaa -aab -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -nic -nic -wsw -aIh -hsy -ylh -mlF -hsy -hmv -iEe -taz -pzM -taK -dZS -hmv -hsy -tos -ylh -hsy -qBS -piJ -nic -nic -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(265,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -cuC -cuC -dqg -rtd -fcP -cuC -cOK -xVk -xVk -xVk -xVk -xVk -xVk -xVk -eJQ -aPw -aHe -mRQ -eky -eky -eky -aNl -eky -eky -eky -biJ -aHe -aPw -eJQ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -wZv -bYn -thV -uWV -uIv -bYn -bYn -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -nic -qBS -lib -hsy -hsy -suJ -hsy -hsy -gLG -ruy -bhI -cTu -hQw -hsy -hsy -wdv -hsy -hsy -yjE -ppM -nic -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(266,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -iKc -uiG -cMN -trB -nVX -jcP -xVk -xVk -xVk -xVk -xVk -xVk -xVk -etf -ohH -atM -aDO -atK -eky -eky -aNl -eky -eky -atM -aDO -atK -sjr -xjz -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dbq -xBn -vME -hSt -xoO -rjG -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -nic -aIh -vsi -hsy -uiC -sIr -jCn -kkk -kjO -pAm -gzq -pAm -eAI -tdv -rlc -hfb -hUk -hsy -ppM -fZR -nic -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(267,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -cIG -vqD -iEr -fcP -blJ -jcP -xVk -xVk -xVk -xVk -xVk -xVk -xVk -etf -aPz -avu -arV -aMU -ssX -vsh -iPD -vsh -fCp -avu -arV -aMU -aPz -xjz -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dbq -gIJ -thV -fCL -lne -wEI -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -nic -ppM -ppM -hsy -thc -sIr -pAm -pAm -pAm -pAm -gzq -pAm -pAm -pAm -pAm -sIr -fZl -hsy -mxV -aIh -nic -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(268,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -dfg -rAP -vqK -lht -blJ -jcP -xVk -xVk -xVk -xVk -xVk -xVk -xVk -etf -aPz -aqJ -aBu -aqp -nkn -lyw -iZg -lyw -nkn -aqJ -aBu -aqp -aPz -xjz -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dbq -gIJ -tjj -ofH -gms -ydh -pql -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aab -aaa -aaa -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -nic -aIh -aIh -hsy -tIe -uAK -bVv -bVv -xTu -gzq -gzq -gzq -ern -bVv -bVv -nJa -jPd -hsy -ppM -eeC -nic -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(269,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -cuC -ptK -bSD -iEr -xKM -cuC -uiR -xVk -xVk -xVk -xVk -xVk -xVk -xVk -oee -aPw -sYD -aMT -aMT -uqI -aHe -aHe -aHe -rdh -aMT -aMT -bZR -aPw -oee -xVk -xVk -xVk -xVk -xVk -xVk -xVk -kMK -bYn -gEv -fCL -lol -jWh -bYn -aaa -bdH -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 -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -nic -ppM -ppM -hsy -dPH -sov -pAm -pAm -nAd -pAm -pAm -pAm -pAm -pAm -pAm -fZl -oex -hsy -aIh -aIh -nic -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(270,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -cuC -ptK -new -iEr -paI -cuC -cOK -xVk -xVk -xVk -xVk -xVk -xVk -xVk -eJQ -aPw -ebn -aMT -aMT -eky -aHe -aHe -aHe -eky -aMT -aMT -oOO -aPw -eJQ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -wZv -bYn -vVw -fCL -tNP -jWh -bYn -aaa -bdH -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 -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -nic -aIh -aIh -hsy -rBv -sov -pAm -pAm -hsy -nDa -nDa -nDa -hsy -gDH -pAm -fZl -snt -hsy -ppM -ppM -nic -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(271,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -jMG -uiG -iUW -trB -ozN -jcP -xVk -xVk -xVk -xVk -xVk -xVk -xVk -etf -gZP -atM -aDO -atK -eky -fRC -lFe -fRC -eky -atM -aDO -atK -aPx -xjz -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dbq -diz -vME -hSt -xoO -adC -pql -bdH -bdH -bdH -bdH -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 -aKQ -aaa -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -nic -ppM -ppM -hsy -fqW -qYq -mQn -pAm -hsy -kiG -aSk -pUv -hsy -pAm -mQn -wQD -fqW -hsy -aIh -aIh -nic -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(272,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -msP -ugJ -kNk -cXY -blJ -jcP -xVk -xVk -xVk -xVk -xVk -xVk -xVk -etf -aPz -avu -arV -aMU -arV -arV -arV -arV -arV -avu -arV -aMU -aPz -xjz -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dbq -gIJ -thV -fCL -lne -wWq -pql -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aaa -aaa -aKQ -bdH -bdH -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -nic -aIh -ppM -hsy -hsy -hsy -hsy -hNP -hsy -hsy -hsy -hsy -hsy -hNP -hsy -hsy -hsy -hsy -ppM -ppM -nic -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(273,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -uMc -spK -nlW -uZH -lht -blJ -jcP -xVk -xVk -xVk -xVk -xVk -xVk -xVk -etf -aPz -aqJ -aBu -aqp -eky -eky -eky -eky -eky -aqJ -aBu -aqp -aPz -xjz -xVk -xVk -xVk -xVk -xVk -xVk -xVk -dbq -gIJ -tjj -jRC -gms -qeK -pql -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -bdH -bdH -bdH -bdH -bdH -bdH -aKQ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aak -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -nic -aIh -ppM -csd -dDJ -hsy -haz -fQn -pzM -qra -tqE -qra -pzM -mtZ -haz -hsy -dDJ -rXH -aIh -aIh -nic -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(274,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -bdH -aaa -aaa -cuC -cuC -jPq -xgm -aqK -cuC -uiR -xVk -xVk -xVk -xVk -xVk -xVk -xVk -oee -aPw -aHe -iTe -eky -eky -atg -aBE -ouB -eky -eky -qPX -aHe -aPw -oee -xVk -xVk -xVk -xVk -xVk -xVk -xVk -kMK -bYn -hTF -rTJ -tAq -bYn -bYn -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aKQ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aak -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -nic -aIh -aIh -aIh -aIh -hsy -haz -pLt -mZL -mZL -mZL -mZL -mZL -lOX -haz -hsy -fpi -aIh -aIh -aIh -nic -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(275,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cuC -uMc -uMc -uMc -cuC -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -jbq -xrq -dID -eky -eky -esT -nYE -orH -eky -eky -etn -xrq -jbq -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -bYn -pql -pql -pql -bYn -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -iBn -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -nic -nic -mem -piJ -piJ -hsy -mkI -aPS -gsM -ukP -eCt -ukP -nop -aPS -ddf -hsy -atS -ppM -fZR -nic -nic -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(276,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -jbq -vlk -dID -eky -eky -bAe -aBG -sGh -eky -eky -etn -vlk -jbq -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -aag -nic -aIh -ppM -sER -hsy -hsy -hsy -hsy -hsy -hsy -hsy -hsy -hsy -hsy -hsy -aIh -aIh -aIh -nic -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(277,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -aPw -uYd -xnz -dqj -eky -xaS -ejt -mPf -eky -gUV -neG -uYd -aPw -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -aag -nic -aIh -ppM -aIh -ppM -puT -aIh -xrg -ppM -ppM -ppM -xrg -aIh -erE -ppM -ppM -ppM -aIh -nic -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(278,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aad -aPw -jbq -aPw -vgD -eky -atg -aBE -ouB -eky -ihX -aPw -jbq -aPw -ajZ -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -aad -aag -aag -aag -aag -gFP -gFP -qjZ -qjZ -qjZ -qjZ -dXI -qjZ -qjZ -qjZ -qjZ -qjZ -dXI -qjZ -qjZ -qjZ -qjZ -gFP -gFP -aag -aag -aag -aag -ajZ -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(279,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aae -aah -aag -jbq -iaR -aBu -aBu -aBu -aBu -aBu -iub -jbq -aag -aah -afm -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -daz -vhe -qQS -cqm -gTH -qit -ebN -qQS -gwn -pfT -vCH -dyp -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -bdH -aae -aah -aah -aah -aah -gFP -gFP -lMb -lMb -fLv -cLq -vON -sgs -ioP -vAI -kXm -eSk -vON -cLq -oLN -lMb -lMb -gFP -gFP -aah -aah -aah -aah -afm -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -"} -(280,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aad -aPw -aPw -jbq -jbq -jbq -jbq -jbq -aPw -aPw -ajZ -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -lmz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -sbJ -sbJ -sbJ -daz -rna -clw -qQS -sKY -qQS -bIp -fKe -dDp -bFg -frM -lcg -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gFP -vVI -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -fXZ -gsi -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(281,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aae -aah -aah -aah -aah -aah -aah -aah -aah -aah -afm -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -lmz -lmz -lmz -lmz -lmz -daz -daz -daz -daz -daz -tte -hvw -auf -pmV -eGr -xDC -dIn -rby -bIp -euN -ujn -sEK -etM -lcg -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gFP -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(282,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -lmz -daz -daz -hRW -asZ -vXh -daz -daz -kfU -daz -ebN -ebN -lnS -uVv -gFz -ebN -rOz -kBy -kBy -nNA -fPB -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gFP -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(283,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -daz -daz -eKJ -yaZ -dJC -hZj -clw -daz -daz -daz -sGZ -ebN -ebN -roH -ebN -daz -daz -daz -wnh -wnh -daz -daz -daz -lmz -lmz -lmz -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gFP -riT -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -vFn -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(284,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xVk -xVk -xVk -xVk -xVk -xVk -xVk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -daz -jYH -ubA -cck -wyQ -fmv -ubA -gMN -mRn -dJO -vMt -dkz -aGk -ktQ -teZ -wkM -ege -iIC -xdz -xdz -wQb -wQb -daz -lmz -lmz -lmz -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -gFP -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(285,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -daz -cwS -ffE -vHa -gqn -ffE -ffE -ffE -jqP -cLo -clw -viB -dIi -qLS -erN -wkM -jvB -jtj -swx -swx -qKZ -gjv -daz -lmz -lmz -lmz -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -gFP -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(286,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -daz -oRV -ydI -mdW -ios -awu -ydI -aKs -fMt -mEs -gbm -kTC -lFj -vyE -mTr -wkM -qNc -uve -gim -gim -vLB -dGe -daz -lmz -lmz -lmz -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -gFP -vVI -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -lMb -gsi -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(287,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -daz -daz -eKJ -yaZ -dJC -hZj -fQD -daz -daz -daz -tHu -ebN -ebN -gXs -ebN -daz -daz -daz -wnh -wnh -daz -daz -daz -lmz -lmz -lmz -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -gFP -lMb -wgf -lMb -qbD -lMb -wgf -lMb -qbD -lMb -wgf -lMb -qbD -lMb -wgf -lMb -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(288,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -lmz -daz -daz -ocB -nJH -rnH -daz -daz -sTV -daz -ebN -ebN -gbg -uVv -lhH -ebN -qQS -kBy -kBy -gfu -kBy -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -gFP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(289,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -lmz -lmz -lmz -lmz -lmz -daz -daz -daz -daz -daz -tte -hvw -auf -hTl -jrH -xDC -yaQ -vLz -mFN -kSy -bFg -dDp -nYg -lcg -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(290,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -bdH -lmz -lmz -lmz -daz -daz -daz -daz -daz -sbJ -sbJ -sbJ -daz -rna -qRX -qQS -aCd -qQS -mFN -igr -sEK -ujn -mlb -lcg -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(291,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -bdH -lmz -lmz -lmz -daz -hWM -hWM -hWM -ebN -daz -ocL -qpY -daz -drU -itg -gba -kRQ -our -ebN -cxc -kBy -kBy -dzt -gyN -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(292,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -lmz -lmz -lmz -daz -hWM -fVx -hWM -ebN -tId -ltc -ltc -daz -ebN -fCI -ebN -daz -daz -daz -daz -daz -daz -daz -daz -daz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(293,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -bdH -bdH -bdH -bdH -izf -hWM -qQS -hWM -ebN -tId -fVx -qQS -ebN -naj -itg -qQS -daz -daz -daz -daz -daz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(294,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -vVk -cJI -fVx -hWM -ebN -tId -qQS -mIJ -wiu -xDC -yaQ -jtj -oZx -irr -irr -xsi -daz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(295,1,1) = {" -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -bdH -bdH -bdH -fhR -nKO -tmV -qQS -gDh -qQS -qQS -yen -flL -qQS -qQS -pUg -sII -cFg -pkS -xsi -daz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aak -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -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 -"} -(296,1,1) = {" -aaa -aaa -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -bdH -bdH -bdH -bdH -npq -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -daz -lmz -lmz -lmz -lmz -lmz -lmz -lmz -bdH -bdH -bdH -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aab -aaa -aaa -"} -(297,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aKQ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(298,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aKQ -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -bdH -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(299,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aab -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -jRz -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aak -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(300,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aKQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} From 1eae950e5c31d5c76af7f619f17ff72f8f5145f1 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Mon, 11 Nov 2024 14:10:06 +0000 Subject: [PATCH 07/13] FU --- maps/map_files/USS_Almayer/USS_Almayer.dmm | 129989 ++++++++++++++++++ 1 file changed, 129989 insertions(+) create mode 100644 maps/map_files/USS_Almayer/USS_Almayer.dmm diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm new file mode 100644 index 000000000000..dce44a720577 --- /dev/null +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -0,0 +1,129989 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space, +/area/space) +"aab" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "tele_ground1"; + teleport_x = 180; + teleport_x_offset = 200; + teleport_y = 50; + teleport_y_offset = 80; + teleport_z = 1; + teleport_z_offset = 1 + }, +/turf/open/space, +/area/space) +"aac" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/space) +"aad" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/space) +"aae" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/space) +"aaf" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/space) +"aag" = ( +/turf/open/floor/almayer_hull, +/area/space) +"aah" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space) +"aak" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "tele_ground1"; + teleport_x = 180; + teleport_x_offset = 200; + teleport_y = 50; + teleport_y_offset = 80; + teleport_z = 1; + teleport_z_offset = 1 + }, +/turf/open/space/basic, +/area/space) +"aam" = ( +/obj/structure/stairs, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"aaq" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/item/clothing/head/helmet/marine/tech{ + layer = 4.1; + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/mob/living/simple_animal/mouse/brown{ + name = "rat" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"aau" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/pilotbunks) +"aaC" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"aaE" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"aaF" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"aaH" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"aaP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"aaY" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"aba" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-3"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"abf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"abh" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/north2) +"abi" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/north2) +"abj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"abk" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"abn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"abs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/north1) +"abw" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/north1) +"abB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"abE" = ( +/turf/closed/wall/almayer, +/area/almayer/living/basketball) +"abF" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"abG" = ( +/obj/structure/filingcabinet/security, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"abH" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"abK" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"abR" = ( +/obj/item/tank/phoron, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"abS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"abT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"abU" = ( +/obj/structure/machinery/computer/aa_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"acc" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"acd" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"acf" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/living/starboard_garden) +"aci" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"acj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/structure/holohoop{ + dir = 4; + id = "basketball"; + side = "left" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"ack" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"acl" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"acm" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"acn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"aco" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"acp" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"acq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"acr" = ( +/obj/structure/orbital_cannon{ + density = 0 + }, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"acs" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/obj/structure/machinery/light/built, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"acu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/vending/cola, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"acv" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/living/starboard_garden) +"acx" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/north2) +"acy" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"acz" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"acA" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"acI" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"acK" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"acL" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"acM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"acN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) +"acQ" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"acS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -29 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"acU" = ( +/obj/structure/closet/basketball, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"acW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"acX" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"acY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"acZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/effect/landmark/map_item, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"add" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ade" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"adj" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"adq" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/north1) +"adr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"adu" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"adC" = ( +/obj/structure/surface/rack, +/obj/item/stock_parts/manipulator/nano{ + pixel_y = -9 + }, +/obj/item/stock_parts/scanning_module/adv{ + pixel_x = 4; + pixel_y = 15 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"adD" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"adF" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/basketball) +"adG" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/starboard_missiles) +"adO" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/starboard_atmos) +"adP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"adR" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "\improper Pilot's Office"; + req_one_access_txt = "3;22;19" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"aea" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aec" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) +"aed" = ( +/obj/structure/machinery/scoreboard_button{ + id = "basketball"; + name = "Scoreboard Reset Button"; + pixel_x = -20 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"aee" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north1) +"aef" = ( +/turf/open/floor/almayer, +/area/almayer/living/basketball) +"aeh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"aei" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"aej" = ( +/turf/closed/wall/almayer, +/area/almayer/living/officer_study) +"ael" = ( +/turf/closed/wall/almayer, +/area/almayer/living/cafeteria_officer) +"aep" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/airmix) +"aer" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"aet" = ( +/turf/closed/wall/almayer, +/area/almayer/living/starboard_garden) +"aex" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"aez" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"aeA" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"aeB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"aeC" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"aeE" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/shipboard/starboard_missiles) +"aeG" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/basketball) +"aeH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/basketball) +"aeI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"aeJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"aeK" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"aeL" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"aeM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"aeN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"aeO" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeP" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/structure/machinery/computer/emails, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"aeT" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"aeW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aeX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aeY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"aeZ" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"afa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"afb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/transmitter{ + dir = 4; + name = "Starboard Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Starboard Railgun Control"; + pixel_x = -26 + }, +/obj/item/device/binoculars, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"afj" = ( +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"afk" = ( +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"afm" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/space) +"afr" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"afs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/basketball) +"afy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"afE" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"afF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"afG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"afH" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"afI" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"afJ" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"afK" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"afL" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"afM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"afN" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"afO" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"afP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/starboard_atmos) +"afQ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/starboard_atmos) +"afT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_missiles) +"afX" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"afZ" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"agb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/bloodsoup{ + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"agc" = ( +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"agf" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"agj" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/commandbunks) +"agq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"agr" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"ags" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/living/officer_study) +"agu" = ( +/turf/open/floor/almayer, +/area/almayer/living/officer_study) +"agv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + access_modified = 1; + dir = 2; + name = "\improper Requisitions Break Room"; + req_one_access_txt = "19;21" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"agA" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/basketball) +"agH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/fancy/cigar/tarbacks, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"agI" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/officer_study) +"agK" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/living/officer_study) +"agM" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Waste Air Injector" + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"agO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"agQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"agT" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"agV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"agY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"ahc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/wy_mre, +/obj/item/storage/box/wy_mre, +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"ahe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"ahf" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"ahh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/starboard_atmos) +"ahi" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"aho" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/offices/flight) +"ahy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/closed/wall/almayer, +/area/almayer/living/starboard_garden) +"ahz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ahG" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/starboard_atmos) +"ahJ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/starboard_atmos) +"ahL" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ahN" = ( +/obj/structure/flora/bush/ausbushes/var3/ywflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"ahR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"ahS" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"ahV" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/offices/flight) +"aia" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/officer_study) +"aic" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aid" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Study" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"aie" = ( +/obj/effect/landmark/railgun_computer, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"aig" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"aih" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + dir = 2; + name = "\improper Officer's Cafeteria" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cafeteria_officer) +"aij" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cafeteria_officer) +"ain" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cafeteria_officer) +"aiq" = ( +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"air" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"ais" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/offices/flight) +"aiw" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/starboard_atmos) +"aiH" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"aiJ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"aiQ" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"aiR" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"aiW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"aiX" = ( +/turf/closed/wall/almayer, +/area/almayer/living/pilotbunks) +"aje" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ajf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ajj" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"ajk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ajl" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/upper_medical) +"ajm" = ( +/obj/structure/closet/secure_closet/securecom, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"ajs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"aju" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ajv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ajA" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"ajD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"ajE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"ajH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ajI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ajM" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/plating, +/area/almayer/living/offices/flight) +"ajT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ajV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ajY" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/space) +"ajZ" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"aka" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"akb" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"akc" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"akf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) +"akh" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/upper/midship_hallway) +"aki" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"akl" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 6; + pixel_x = 2 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"akn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/hallways/lower/vehiclehangar) +"ako" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"akt" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"aku" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar/tarbacktube, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilottex{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"akv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/tool/crowbar, +/obj/item/clothing/head/helmet/marine/pilot{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/device/camera{ + pixel_x = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"akw" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"akx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null; + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"akz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"akA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"akC" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/starboard_missiles) +"akE" = ( +/obj/structure/machinery/door_control{ + id = "or2privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"akL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = 8; + pixel_y = 24; + req_access_txt = "31" + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"akQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"akX" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"ald" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"alf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"alg" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"alh" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"alk" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 1"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple, +/area/almayer/medical/containment/cell) +"alp" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"alw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Pilot's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"aly" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/starboard_missiles) +"alD" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 6; + pixel_x = 7 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"alE" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"alL" = ( +/turf/closed/wall/almayer, +/area/almayer/command/telecomms) +"alO" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering) +"alR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"alU" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/navigation) +"alW" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"alX" = ( +/turf/open/floor/almayer, +/area/almayer/command/cic) +"alZ" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/cic) +"amb" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"amd" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"amg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"amh" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"amk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"amo" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ams" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"amu" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"amw" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) +"amx" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"amz" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/starboard_missiles) +"amA" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"amE" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/surface/rack, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"amF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"amH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"amI" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"amM" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/engineering/port_atmos) +"amX" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"amY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"ana" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"and" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"ang" = ( +/obj/item/clothing/head/welding{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"anm" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"anp" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/gm/grass/grass1, +/area/almayer/medical/upper_medical) +"anq" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"anr" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/sign/safety/terminal{ + pixel_x = 3; + pixel_y = 29 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"ans" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"anw" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 1"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"anz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/photocopier, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"anM" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"anO" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"anP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"anU" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"anV" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"anW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"aoa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"aoe" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/morgue) +"aog" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"aoh" = ( +/obj/structure/morgue/crematorium, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aoi" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"aom" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"aop" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/upper_medical) +"aoq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aor" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aos" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/upper_medical) +"aov" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"aoy" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aoz" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"aoA" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"aoC" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aoI" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"aoJ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 1"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"aoK" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_display/research_cell{ + dir = 1; + id = "Containment Cell 5"; + name = "Cell 5 Control"; + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 5"; + name = "Containment Lockdown"; + pixel_x = -8; + pixel_y = -3; + req_one_access_txt = "19;28" + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"aoL" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"aoM" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"aoN" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"aoP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aoT" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aoW" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aoX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"apa" = ( +/obj/structure/surface/rack, +/obj/item/tool/screwdriver, +/obj/item/device/analyzer, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"ape" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"apg" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"api" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"apk" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"apo" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"apq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"aps" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"apt" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"apz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "northcheckpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"apB" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/wrapped/booniebars, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"apE" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"apL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"apR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"apS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 + }, +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 15 + }, +/obj/item/device/camera{ + pixel_x = -3; + pixel_y = 22 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"apU" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 2"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 8 + }, +/area/almayer/medical/containment/cell) +"apW" = ( +/obj/structure/machinery/telecomms/server/presets/common, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"apX" = ( +/obj/structure/machinery/telecomms/server/presets/medical, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"apY" = ( +/obj/structure/machinery/telecomms/server/presets/engineering, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"apZ" = ( +/obj/structure/machinery/telecomms/receiver/preset_left, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/radio_rad{ + pixel_x = 16; + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"aqa" = ( +/obj/structure/machinery/telecomms/receiver/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"aqb" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"aqf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"aqg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aqh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"aqi" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"aqm" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aqn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"aqo" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/offices) +"aqp" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"aqq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"aqs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"aqu" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"aqw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"aqy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"aqz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"aqB" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"aqF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cic) +"aqG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/medical_science) +"aqH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"aqI" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"aqJ" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"aqK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"aqL" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"aqN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aqP" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 1"; + locked = 1; + name = "\improper Containment Cell 1" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 1"; + name = "\improper Containment Cell 1"; + unacidable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"aqS" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"aqU" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/airoom) +"aqV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"aqY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"aqZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_stern) +"arb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"arg" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"arh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ari" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/item/storage/pouch/tools, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"arj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/radio/headset, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"ark" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"arl" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"arm" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"arp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"arq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"arr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ars" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ary" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door_control{ + access_modified = 1; + id = "OTStore"; + name = "Shutters"; + pixel_y = -24; + req_one_access_txt = "35" + }, +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"arz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"arA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"arF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"arG" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"arH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"arK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"arP" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"arR" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"arT" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"arV" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"arX" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"asc" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"ase" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"asf" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"asm" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"asn" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"asr" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"asu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -10; + pixel_y = -27 + }, +/obj/structure/closet/secure_closet/professor_dummy{ + pixel_y = -30 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"asw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"asA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"asE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"asH" = ( +/obj/structure/machinery/telecomms/bus/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asI" = ( +/obj/structure/machinery/telecomms/bus/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asJ" = ( +/obj/structure/machinery/telecomms/bus/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asK" = ( +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asL" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"asM" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"asN" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"asQ" = ( +/obj/structure/surface/rack, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/folded_tent/cmd, +/obj/item/flag/plantable/ua, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"asR" = ( +/turf/open/floor/almayer/orange, +/area/almayer/command/cic) +"asT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"asU" = ( +/obj/item/device/flashlight/lamp{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/device/flash, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"asX" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"asZ" = ( +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"ata" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/ladder{ + height = 2; + id = "cicladder1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"atb" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder2" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"atc" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"atf" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"atg" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"atk" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "tcomms_apc"; + name = "\improper Telecommunications Power Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"atm" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"atn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"ato" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"atq" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"atr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ats" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"att" = ( +/obj/structure/surface/table/almayer, +/obj/item/stock_parts/matter_bin, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"atu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"atv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"atx" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"aty" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"atz" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"atH" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"atJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"atK" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"atM" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"atN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"atO" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"atP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"atS" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"atT" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"auc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" + }, +/obj/effect/step_trigger/ares_alert/access_control, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"auf" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"aui" = ( +/obj/structure/machinery/telecomms/hub/preset, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"auj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"aum" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"auu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"auy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"auA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"auB" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"auH" = ( +/obj/structure/machinery/door_control{ + id = "tcomms_apc"; + name = "Telecommuncation Power"; + pixel_x = -25 + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"auL" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"auO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"auQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/cic) +"auS" = ( +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/item/tool/warning_cone, +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"auT" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/command/cic) +"auU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"auV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"auW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/port_point_defense) +"auX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"auZ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"ava" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"avd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"avo" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/powered/agent) +"avp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"avs" = ( +/turf/closed/wall/biodome, +/area/almayer/powered/agent) +"avu" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"avv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"avw" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/weapon_room) +"avx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"avB" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/navigation) +"avC" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) +"avF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) +"avG" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) +"avH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"avJ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-5"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"avN" = ( +/obj/structure/machinery/telecomms/processor/preset_two, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avO" = ( +/obj/structure/machinery/telecomms/processor/preset_three, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avP" = ( +/obj/structure/machinery/telecomms/processor/preset_four, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avQ" = ( +/obj/structure/machinery/telecomms/processor/preset_one, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avR" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 6 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"avS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/cic) +"avU" = ( +/obj/effect/landmark/start/crew_chief, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"avV" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/bed/chair, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"avW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/gloves{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/storage/box/masks{ + pixel_x = 5 + }, +/obj/structure/closet/secure_closet/surgical{ + pixel_y = 30 + }, +/obj/item/reagent_container/glass/minitank{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"avY" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"avZ" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"awa" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"awd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/pilotbunks) +"awe" = ( +/turf/open/floor/plating/almayer, +/area/almayer/living/starboard_garden) +"awi" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"awj" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/gm/grass/grass1, +/area/almayer/medical/upper_medical) +"awk" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"awm" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/cic) +"awn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"awp" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"awq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"awt" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) +"awu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"awv" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"awx" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/command/telecomms) +"awy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"awz" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/cichallway) +"awA" = ( +/obj/structure/prop/almayer/computers/sensor_computer3{ + name = "weapon targetting computer" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"awB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"awC" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/port_missiles) +"awD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"awE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"awF" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/numbertwobunks) +"awG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"awH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/obj/item/device/megaphone, +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 8; + layer = 2.99; + name = "brig cameras console"; + pixel_x = 17; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"awQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/device/multitool{ + pixel_x = 8 + }, +/obj/item/tool/screwdriver{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"awR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"awS" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "officers_mess"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/captain_mess) +"awW" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"awX" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"awZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_x = 8; + pixel_y = 12 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"axa" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"axc" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 + }, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"axe" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"axk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"axl" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + name = "\improper CMO's Office"; + req_one_access = null; + req_one_access_txt = "1;5" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"axm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"axn" = ( +/obj/structure/sign/safety/rewire{ + layer = 2.4; + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"axo" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/telecomms) +"axp" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cic) +"axu" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"axw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"axx" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axy" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axA" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/pen/blue, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axD" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"axE" = ( +/obj/structure/closet/toolcloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"axI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axL" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"axR" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"axV" = ( +/obj/structure/machinery/telecomms/server/presets/command, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"axW" = ( +/obj/structure/machinery/telecomms/server/presets/security, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"axX" = ( +/obj/structure/machinery/telecomms/server/presets/squads, +/obj/structure/sign/safety/commline_connection{ + pixel_y = -32 + }, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"axY" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"aya" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering) +"ayb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"aye" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ayi" = ( +/obj/structure/machinery/recharger, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"ayj" = ( +/obj/effect/landmark/start/cargo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"ayl" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"ayo" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"ayq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"ayr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17; + pixel_y = 8 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17; + pixel_y = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"ays" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"ayu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"ayv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"ayw" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/navigation) +"ayz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/command/cic) +"ayD" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"ayI" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -4 + }, +/obj/item/clothing/glasses/welding{ + pixel_y = 6 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"ayK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"ayL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"ayM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"ayV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"ayW" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/morgue) +"ayX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/structure/sign/catclock{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"ayZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"aza" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"azc" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"azd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/command/telecomms) +"aze" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"azg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"azh" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azi" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/item/cell/high, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"azl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/offices/flight) +"azo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"azp" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"azq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azs" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods{ + amount = 40 + }, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"azt" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"azw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"azy" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"azA" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"azC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"azD" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"azJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + req_one_access_txt = "3;19;22" + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"azL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"azN" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"azU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"azW" = ( +/obj/structure/machinery/door/window/westright{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"azZ" = ( +/obj/structure/machinery/keycard_auth, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAf" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"aAj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cic) +"aAn" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aAq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"aAr" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/surface/rack, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/obj/item/storage/box/botanydisk, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aAy" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"aAA" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/cic) +"aAB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/groundside_operations{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aAC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aAE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aAF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel" + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"aAL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"aAP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/obj/structure/machinery/door_control{ + id = "cic_exterior"; + name = "CIC Door Control"; + normaldoorcontrol = 1; + pixel_y = -14; + req_one_access_txt = "19" + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"aAU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aAZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aBb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aBc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aBd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"aBe" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 2"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"aBf" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + name = "Telecommunications"; + req_access_txt = "6" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"aBh" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBi" = ( +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/tool/pen, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aBk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"aBm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aBn" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aBr" = ( +/obj/structure/ladder{ + height = 2; + id = "engineeringladder" + }, +/turf/open/floor/plating/almayer, +/area/almayer/engineering/upper_engineering) +"aBs" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aBt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/device/radio/marine{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"aBu" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"aBw" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"aBx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"aBz" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random, +/obj/item/folder/black_random, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"aBA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/command/lifeboat) +"aBD" = ( +/obj/structure/closet/basketball, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"aBE" = ( +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"aBG" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/lifeboat) +"aBH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"aBI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aBP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = list(36) + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/synthcloset) +"aBR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/item/device/whistle, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"aBS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cic) +"aBW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"aBX" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"aBZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 4; + layer = 2.99; + pixel_y = 4 + }, +/obj/structure/machinery/computer/almayer_control{ + dir = 4; + layer = 2.99; + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aCa" = ( +/obj/structure/machinery/door/window/westright{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aCb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/window/reinforced/toughened, +/obj/structure/machinery/computer/crew/alt{ + dir = 8; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aCd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"aCf" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/plating, +/area/almayer/command/cic) +"aCj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aCk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cic) +"aCo" = ( +/turf/open/gm/grass/grass1, +/area/almayer/medical/upper_medical) +"aCt" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"aCu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"aCw" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aCA" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"aCC" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"aCD" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 4; + pixel_x = -16 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"aCR" = ( +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_y = 28; + req_one_access_txt = "28" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"aCX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aCZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/computerlab) +"aDa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aDb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/command/telecomms) +"aDe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"aDh" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"aDi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aDj" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"aDm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDn" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"aDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDt" = ( +/obj/structure/machinery/cm_vending/clothing/military_police_warden, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"aDv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aDB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aDD" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering) +"aDE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"aDH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aDK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"aDO" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"aDQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/lifeboat) +"aDS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"aDU" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/obj/item/tool/minihoe{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -4 + }, +/obj/item/tool/wirecutters/clippers{ + pixel_y = -2 + }, +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"aDX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aEe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"aEf" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"aEg" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/command/lifeboat) +"aEi" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"aEj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/helmet/marine/pilot, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"aEm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aEo" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"aEr" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"aEA" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"aEB" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"aEC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aED" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"aEG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cic) +"aEM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"aEN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"aEO" = ( +/obj/structure/machinery/light/double/blue{ + light_color = "#a7dbc7" + }, +/turf/open/gm/grass/grass1, +/area/almayer/medical/upper_medical) +"aEQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"aES" = ( +/turf/closed/wall/almayer, +/area/almayer/living/bridgebunks) +"aET" = ( +/turf/closed/wall/almayer, +/area/almayer/living/captain_mess) +"aEW" = ( +/turf/closed/wall/almayer, +/area/almayer/living/numbertwobunks) +"aEZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves{ + pixel_x = -4; + pixel_y = 13 + }, +/obj/item/storage/box/masks{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"aFa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"aFe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"aFf" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"aFg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/briefcase, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"aFh" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aFi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aFl" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aFm" = ( +/obj/structure/surface/table/almayer, +/obj/item/shard, +/obj/item/tool/extinguisher, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFr" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"aFu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFv" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/circuitboard/apc, +/obj/item/tool/screwdriver, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFy" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/yellow, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aFA" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"aFB" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"aFD" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"aFG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"aFI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aGa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"aGb" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"aGg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) +"aGj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"aGk" = ( +/obj/structure/machinery/door_control{ + id = "ARES Operations Left"; + name = "ARES Operations Shutter"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"aGm" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"aGn" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"aGp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + layer = 3.3; + pixel_x = -17 + }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aGq" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cic) +"aGr" = ( +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aGs" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"aGv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"aGz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/port_atmos) +"aGA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"aGH" = ( +/obj/structure/machinery/computer/ordercomp, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aGN" = ( +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"aGP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"aGQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"aGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"aGV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aGW" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/morgue) +"aGX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"aGY" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aGZ" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/numbertwobunks) +"aHa" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/morgue) +"aHe" = ( +/turf/closed/wall/almayer, +/area/almayer/command/lifeboat) +"aHl" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aHn" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westleft, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/numbertwobunks) +"aHq" = ( +/turf/closed/wall/almayer, +/area/almayer/command/computerlab) +"aHr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aHs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aHu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ + id = "engie_store" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aHv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + no_panel = 1; + req_one_access = null; + req_one_access_txt = "2;7"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors/antitheft{ + id = "engie_store" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aHw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering Lounge" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aHK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aHM" = ( +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"aHR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"aHS" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Mixed Air Injector" + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aHX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) +"aHY" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) +"aHZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"aId" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"aIe" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"aIf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aIh" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"aIl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"aIo" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"aIq" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aIx" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aIy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"aIB" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aIC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/transmitter/rotary{ + name = "Researcher Office Telephone"; + phone_category = "Almayer"; + phone_id = "Research"; + pixel_y = 6 + }, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_container/glass/beaker/large{ + pixel_x = -6 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"aID" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aIP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"aIQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + name = "\improper XO's Quarters"; + req_access = null; + req_access_txt = "1" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/numbertwobunks) +"aIT" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"aIU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aIV" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"aIX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"aIY" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/storage/firstaid/regular, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"aJc" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Commanding Officer's Mess" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) +"aJf" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aJg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"aJh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering) +"aJi" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"aJj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"aJk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"aJl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"aJn" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 1; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment) +"aJp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/command/cichallway) +"aJq" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"aJw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"aJG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cic) +"aJI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"aJJ" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/obj/structure/bed/chair, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aJU" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"aKa" = ( +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"aKf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"aKg" = ( +/obj/structure/flora/bush/ausbushes/var3/brflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aKi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aKk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"aKn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aKo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aKq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"aKs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + explo_proof = 1; + name = "ARES Chamber Lockdown"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES Railing"; + explo_proof = 1; + name = "ARES Chamber Railings"; + needs_power = 0; + pixel_x = 24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4.1; + density = 0; + dir = 2; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + pixel_x = -1; + pixel_y = -1; + unacidable = 0; + unslashable = 0 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"aKu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"aKv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"aKy" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"aKz" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"aKE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"aKF" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"aKG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"aKH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"aKN" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/accessory/red, +/obj/item/clothing/head/bowlerhat{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/clothing/suit/storage/webbing, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aKO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 + }, +/obj/item/storage/fancy/cigarettes/lady_finger{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"aKQ" = ( +/turf/closed/wall/almayer/outer, +/area/space) +"aKR" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/starboard_point_defense) +"aKS" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"aKU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"aKV" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"aLc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"aLp" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"aLx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_x = -7; + pixel_y = -26; + req_one_access_txt = "3;22;2;19;7" + }, +/obj/structure/surface/rack, +/obj/item/parachute{ + pixel_y = 8 + }, +/obj/item/parachute, +/obj/item/parachute{ + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/hallways/lower/repair_bay) +"aLE" = ( +/obj/docking_port/stationary/emergency_response/external/hangar_starboard{ + dwidth = 8 + }, +/turf/open/space, +/area/space) +"aLJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"aLL" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/starboard_point_defense) +"aLM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aLS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/retractor, +/obj/item/tool/surgery/cautery, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"aLT" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/alpha) +"aLW" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"aLZ" = ( +/obj/structure/bed/sofa/south/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"aMd" = ( +/obj/structure/filingcabinet/seeds{ + density = 0; + pixel_x = 5; + pixel_y = 16 + }, +/obj/structure/filingcabinet/disk{ + density = 0; + pixel_x = -11; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aMf" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"aMg" = ( +/obj/structure/sign/safety/intercom{ + layer = 2.9; + pixel_x = -6; + pixel_y = 29 + }, +/obj/structure/machinery/botany/extractor{ + density = 0; + pixel_x = 15; + pixel_y = 16 + }, +/obj/item/device/flashlight/pen{ + pixel_x = 14; + pixel_y = 15 + }, +/obj/structure/machinery/vending/hydroseeds{ + density = 0; + pixel_x = -7; + pixel_y = 16; + req_access_txt = "28" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aMl" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"aMm" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/crowbar, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aMo" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aMq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aMt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"aMw" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aMx" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"aMy" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"aMz" = ( +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"aMB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"aMC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"aMD" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/toy/deck, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"aME" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/airmix) +"aMG" = ( +/obj/structure/machinery/microwave{ + pixel_y = 7 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"aMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aMI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/marine/spec/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"aML" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"aMO" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"aMP" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/squads/alpha) +"aMQ" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aMT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"aMU" = ( +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"aMY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"aNc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"aNi" = ( +/turf/closed/wall/almayer, +/area/almayer/living/chapel) +"aNl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"aNm" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aNr" = ( +/obj/effect/landmark/start/chef, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"aNs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aNx" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"aNE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"aNI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"aNO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"aNQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aNT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"aNW" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"aNY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"aOd" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) +"aOe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"aOq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aOr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aOs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"aOt" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"aOy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"aOz" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/squads/alpha) +"aOB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aOC" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"aOF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"aOG" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aOH" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aOK" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"aOL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aOM" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"aON" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"aOQ" = ( +/obj/structure/closet/crate, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"aOR" = ( +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"aOS" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_a_s) +"aOV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"aOW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/donkpockets, +/obj/structure/window/reinforced, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/cans/souto/peach{ + pixel_x = 12 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"aPa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"aPe" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"aPf" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aPg" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"aPi" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"aPj" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"aPl" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"aPn" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"aPo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"aPr" = ( +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"aPw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/command/lifeboat) +"aPx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D2"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"aPz" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"aPB" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/command/cic) +"aPC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"aPD" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"aPE" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"aPH" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aPI" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cic) +"aPJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/corner2, +/area/almayer/medical/containment/cell) +"aPK" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/alpha) +"aPN" = ( +/obj/structure/ladder{ + height = 2; + id = "ForeStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/s_bow) +"aPO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"aPS" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"aPT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"aPU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"aPV" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"aQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"aQg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/command/cic) +"aQp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aQr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"aQx" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "hypersleep curtain" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"aQy" = ( +/obj/structure/transmitter{ + dir = 8; + name = "RO Office Telephone"; + phone_category = "Offices"; + phone_id = "RO Office"; + pixel_x = 16 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"aQz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"aQF" = ( +/turf/closed/wall/almayer, +/area/almayer/living/offices) +"aQG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"aQH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"aQL" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/bravo) +"aQM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/engineering_guide{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aQN" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/bravo) +"aQT" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"aQW" = ( +/obj/structure/machinery/vending/cola{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"aQZ" = ( +/obj/structure/machinery/botany/editor{ + density = 0; + pixel_x = 5; + pixel_y = 16 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 5; + pixel_y = 24 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"aRd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/window/westright{ + dir = 4; + req_access_txt = "28" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "researchlockdownext_windoor"; + name = "\improper Research Windoor Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"aRi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"aRj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"aRo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"aRq" = ( +/obj/structure/closet/secure_closet/staff_officer/gear, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aRt" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/command/cic) +"aRu" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"aRv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRx" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aRy" = ( +/turf/open/floor/almayer, +/area/almayer/living/offices) +"aRA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"aRB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/toastedsandwich{ + pixel_y = 5 + }, +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRC" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRE" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aRF" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/upper_medical) +"aRJ" = ( +/obj/structure/ladder{ + height = 2; + id = "med1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 + }, +/obj/structure/sign/safety/refridgeration{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/upper_medical) +"aRK" = ( +/obj/structure/ladder{ + height = 2; + id = "med2" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/upper_medical) +"aRL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"aRP" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"aRS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"aRT" = ( +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"aRU" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"aRX" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"aRZ" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"aSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"aSb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/upper_medical) +"aSk" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"aSn" = ( +/obj/item/stack/sheet/mineral/plastic{ + amount = 15 + }, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"aSo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"aSp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"aSq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aSt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aSx" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aSA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"aSE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"aSH" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"aSI" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"aSJ" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"aSO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_two) +"aTa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"aTg" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"aTj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"aTk" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"aTl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"aTm" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"aTn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) +"aTr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) +"aTv" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/bravo) +"aTw" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"aTx" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"aTy" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"aTz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aTA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -1 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -8 + }, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aTB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aTE" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aTG" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aTT" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"aTW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aTY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"aTZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"aUd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper Officer's Bunks"; + req_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/port_atmos) +"aUe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"aUi" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"aUj" = ( +/obj/structure/machinery/cm_vending/clothing/tl/bravo{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"aUk" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aUl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aUp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/donut_box, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUq" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aUw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"aUB" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"aUC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/tofukabob, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/obj/item/reagent_container/food/snacks/tofubreadslice, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aUH" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/port_atmos) +"aUL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/cigbutt, +/obj/item/ashtray/glass, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"aUM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"aUY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"aUZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"aVd" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"aVf" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"aVg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"aVi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aVk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"aVm" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/starboard_hallway) +"aVo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aVr" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/structure/sign/safety/fridge{ + pixel_x = 32 + }, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/item/reagent_container/food/snacks/carpmeat, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"aVC" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"aVF" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/cargo, +/area/almayer/command/telecomms) +"aVG" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/cichallway) +"aVH" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"aVI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 5 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"aVK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"aVL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"aVM" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"aVQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 27; + serial_number = 11 + }, +/obj/item/trash/pistachios{ + layer = 2; + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 22 + }, +/obj/item/ammo_magazine/rifle/incendiary{ + current_rounds = 0; + desc = "A 10mm assault rifle magazine with ':D' drawn on the side"; + pixel_x = 10; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"aVR" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"aVU" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aVV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aVW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"aVX" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Officer's Quarters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"aWb" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/machinery/door_control/brbutton{ + id = "engie_store"; + name = "Emergency Storage"; + pixel_x = -2; + pixel_y = 26; + req_one_access_txt = "6" + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_x = -17; + pixel_y = -6 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/ce_room) +"aWc" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"aWg" = ( +/obj/structure/machinery/door_control{ + id = "CMP Office Shutters"; + name = "CMP Office Shutters"; + pixel_y = 32; + req_one_access_txt = "24;31" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_y = 24; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"aWk" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aWm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"aWn" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"aWo" = ( +/obj/structure/pipes/unary/outlet_injector, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aWp" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + id_tag = "waste_lower_out" + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aWq" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aWt" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"aWu" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"aWw" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/gym) +"aWz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"aWD" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/offices) +"aWE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"aWF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"aWM" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/upper/fore_hallway) +"aWT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"aWV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aWW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aWZ" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/airmix) +"aXb" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aXc" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -9; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"aXe" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"aXh" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aXj" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aXx" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"aXA" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/engineering/port_atmos) +"aXD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"aXZ" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"aYd" = ( +/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"aYs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"aYt" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"aYu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aYz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"aYC" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"aYH" = ( +/obj/structure/safe/cl_office, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"aYQ" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_one) +"aYR" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"aZe" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aZf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"aZr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aZs" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aZv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) +"aZy" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aZz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"aZC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"aZF" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"aZI" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"aZK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"aZL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZO" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZP" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZQ" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZR" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZV" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZW" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZX" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZY" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"aZZ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"baf" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"bag" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"baw" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"baG" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"baH" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baI" = ( +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"baJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"baM" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"baS" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"baX" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"baZ" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/lower_medical_lobby) +"bba" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"bbd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"bbe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"bbf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bbi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) +"bbr" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"bbs" = ( +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"bbu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bby" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"bbz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"bbA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"bbS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/starboard_point_defense) +"bbV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"bbY" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bbZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"bca" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bcb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/bed/sofa/south/white/left{ + pixel_y = 16 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/maint/upper/u_m_p) +"bcm" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"bco" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bcp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bct" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/maint/upper/u_a_p) +"bcw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bcz" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"bcA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"bcC" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/obj/structure/sign/safety/ref_chem_storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"bcD" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"bcE" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bcH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bcK" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/chemistry) +"bcL" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_one) +"bcM" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"bcP" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"bcR" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"bcS" = ( +/obj/structure/machinery/door_control{ + id = "or1privacyshutter"; + name = "Privacy Shutters"; + pixel_y = 25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"bcV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"bcZ" = ( +/obj/structure/machinery/chem_dispenser/corpsman{ + pixel_y = 3 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bda" = ( +/obj/structure/machinery/door_control{ + id = "or02"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) +"bdd" = ( +/turf/closed/wall/almayer, +/area/almayer/living/briefing) +"bdg" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"bdj" = ( +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bdk" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"bdl" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"bdm" = ( +/obj/structure/machinery/door_control{ + id = "crate_room"; + name = "storage shutters"; + pixel_x = -25; + pixel_y = -1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bdr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bds" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdv" = ( +/obj/structure/machinery/cm_vending/clothing/leader/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdw" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/cryo_cells) +"bdy" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"bdz" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"bdA" = ( +/obj/structure/machinery/cm_vending/clothing/medic/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdC" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdD" = ( +/obj/structure/machinery/cm_vending/clothing/engi/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdH" = ( +/turf/open/space/basic, +/area/space) +"bdI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bdJ" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bdK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bdL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bdM" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bdO" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bdU" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bdV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bdY" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"bea" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bed" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"beg" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bei" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"bej" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"ben" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"bep" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"ber" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "north_central_checkpoint"; + name = "North Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bet" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/chemistry) +"bev" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"bew" = ( +/obj/structure/machinery/chem_dispenser/corpsman{ + pixel_y = 3 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"bez" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_one) +"beH" = ( +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"beL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"beN" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"beP" = ( +/obj/item/stack/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/almayer, +/area/almayer/squads/alpha_bravo_shared) +"beQ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"beR" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"beS" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"beT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"beU" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"beV" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/marine/leader/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"beW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"bfd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"bfl" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/cryo_cells) +"bfm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/cryo_cells) +"bfn" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"bfo" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) +"bfs" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_s) +"bft" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bfu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/squads/alpha) +"bfw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bfz" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfC" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"bfE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"bfJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/handheld1, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bfK" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_closed, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bfL" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bfO" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"bfV" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bfY" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_open, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bfZ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bgj" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bgk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"bgl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bgm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bgn" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_two) +"bgr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"bgs" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"bgt" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_two) +"bgu" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/chemistry) +"bgv" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or01"; + name = "Operating Theatre 1" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_one) +"bgw" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "or2privacyshutter"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/medical/operating_room_two) +"bgy" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or02"; + name = "Operating Theatre 2" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_two) +"bgz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"bgA" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"bgC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"bgK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"bgM" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/midship_hallway) +"bgN" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"bgO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bgP" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"bgR" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"bgU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"bgW" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"bgY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"bhf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/telecomms/broadcaster/preset_left, +/obj/structure/sign/safety/laser{ + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"bhg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"bho" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"bhq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bhx" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"bhy" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bhG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bhI" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"bhJ" = ( +/obj/structure/machinery/cm_vending/clothing/staff_officer{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"bhR" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"bhT" = ( +/obj/structure/cargo_container/lockmart/mid{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bhU" = ( +/obj/structure/cargo_container/lockmart/right{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bhV" = ( +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"biq" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/item/reagent_container/glass/beaker, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/chemistry) +"biu" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Chemistry Laboratory"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/chemistry) +"biy" = ( +/obj/structure/pipes/unary/freezer, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"biA" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_three) +"biC" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"biF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/roller/surgical, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/folded_tent/med{ + pixel_x = -8; + pixel_y = 14 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"biJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"biV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/starboard_garden) +"bjg" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"bjk" = ( +/obj/structure/machinery/door_control{ + id = "perma_lockdown_2"; + name = "Maint Lockdown Shutters"; + pixel_y = -20; + req_one_access_txt = "24;31" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"bjs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bjt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"bju" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"bjv" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"bjA" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"bjD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"bjM" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"bjQ" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"bjR" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bjS" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bjZ" = ( +/obj/structure/machinery/cm_vending/clothing/marine/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/gym) +"bkb" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"bkd" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bkg" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"bkh" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bko" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bks" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bky" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"bkz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Nurse Office"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lockerroom) +"bkA" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/chemistry) +"bkE" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "or1privacyshutter"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/medical/operating_room_one) +"bkM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/maint/upper/u_m_p) +"bkN" = ( +/obj/item/storage/firstaid/toxin{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bkS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"bkT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"bkU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/late_join, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/start/senior, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"blf" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bli" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 6"; + name = "Cell 6" + }, +/obj/structure/sign/safety/six{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"blj" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bll" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bln" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 27 + }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"blp" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter/zippo, +/obj/item/toy/dice/d20, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/dice{ + pixel_x = 10; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"blq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"bls" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/basketball) +"blw" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/lighter, +/obj/structure/machinery/faxmachine/uscm, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"blA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"blB" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"blJ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"blQ" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"blZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lockerroom) +"bmb" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"bmc" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or03"; + name = "Operating Theatre 3" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_three) +"bmd" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + id_tag = "or04"; + name = "Operating Theatre 4" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/operating_room_four) +"bmh" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"bmi" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_three) +"bmj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"bmk" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_four) +"bml" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bmn" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_lobby) +"bmp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"bmr" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bmv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"bmz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = 10 + }, +/obj/item/reagent_container/food/snacks/hotchili, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"bmB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) +"bmC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-y" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bmD" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"bmF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"bmO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"bmW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bmX" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"bng" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/offices) +"bni" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bnj" = ( +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"bno" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"bnp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"bnr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"bnt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"bnu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"bny" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"bnA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"bnB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"bnH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/tool/warning_cone, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bnI" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"bnR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"bnS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bnT" = ( +/obj/structure/machinery/door_control{ + id = "or03"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) +"bnX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bnZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"bof" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"boh" = ( +/obj/structure/machinery/door_control{ + id = "or04"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"bom" = ( +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"bop" = ( +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering/port) +"boq" = ( +/obj/structure/bed/chair/comfy/alpha, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bos" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"boy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"boz" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"boA" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"boB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"boV" = ( +/obj/structure/cargo_container/wy/left, +/obj/structure/prop/almayer/minigun_crate{ + pixel_x = 1; + pixel_y = 39 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"boX" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"boY" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bpa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bpd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_missiles) +"bpe" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"bpj" = ( +/obj/structure/dropship_equipment/fulton_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"bpo" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bpv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "south_central_checkpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bpw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"bpz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"bpA" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bpC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"bpG" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"bpH" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"bpI" = ( +/obj/structure/closet/secure_closet/fridge/dry/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"bpK" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"bpL" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"bpQ" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bpR" = ( +/turf/open/floor/almayer/empty/requisitions, +/area/supply/station) +"bpS" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bpT" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"bpV" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bqa" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/device/autopsy_scanner, +/obj/item/tool/surgery/scalpel, +/obj/item/tool/surgery/hemostat, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"bqc" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"bqg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"bqF" = ( +/obj/structure/dropship_equipment/fuel/fuel_enhancer, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"bqH" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"bqL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"bqN" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lockerroom) +"bqR" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"bqT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"bqW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/head/cmcap{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/prop/helmetgarb/helmet_nvg/cosmetic{ + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"bqY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"bqZ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bra" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"brb" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"brf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/starboard_missiles) +"bri" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) +"brj" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"brn" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"brp" = ( +/obj/structure/supply_drop/bravo, +/turf/open/floor/plating, +/area/almayer/squads/req) +"brq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"brr" = ( +/obj/structure/machinery/cm_vending/clothing/medic/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"brs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"brt" = ( +/obj/structure/machinery/cm_vending/clothing/engi/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"brv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"bry" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"brA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"brH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"brS" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"brW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"brY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bsj" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"bsp" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"bst" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_one) +"bsw" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/chapel) +"bsy" = ( +/obj/structure/closet/medical_wall{ + pixel_x = 30 + }, +/obj/item/reagent_container/food/drinks/cans/souto/blue, +/obj/item/reagent_container/food/drinks/cans/souto/blue, +/obj/item/reagent_container/food/drinks/cans/souto/classic, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"bsz" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bsD" = ( +/obj/structure/closet{ + name = "boxing attire" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/green, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/shorts/grey, +/obj/item/clothing/under/shorts/grey, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"bsF" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"bsG" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/cryo_cells) +"bsJ" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/req) +"bsK" = ( +/obj/effect/landmark/supply_elevator, +/turf/open/floor/almayer/empty/requisitions, +/area/supply/station) +"bsL" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/squads/req) +"bsN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"bsP" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bsQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_three) +"bsR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"bsS" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bsU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/squads/alpha) +"bsW" = ( +/obj/structure/machinery/cm_vending/clothing/leader/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"btb" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_a_s) +"btc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"bti" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/intel{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"btr" = ( +/obj/structure/closet/boxinggloves, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"btv" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"btx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"btC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"btD" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"btG" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"btM" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"btN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"btO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"btV" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"btX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_three) +"btY" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"buc" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"bui" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_one) +"buj" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_one) +"bur" = ( +/obj/structure/prop/almayer/missile_tube, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_missiles) +"buu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"buv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"buz" = ( +/obj/structure/supply_drop/charlie, +/turf/open/floor/plating, +/area/almayer/squads/req) +"buB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"buM" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"buN" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"buO" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"buS" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"buY" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"bvb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"bve" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bvf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bvr" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bvz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_one) +"bvD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_fore_hallway) +"bvF" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"bvH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/tool/hand_labeler{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"bvS" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"bvX" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/window, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"bwc" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"bwe" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bwf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bwg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/squads/alpha) +"bwh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"bwl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bwm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bwn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bwv" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"bww" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"bwG" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"bwH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"bwP" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bwR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = -4 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lockerroom) +"bwT" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"bxf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"bxg" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bxh" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/req) +"bxi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/mono, +/area/almayer/squads/req) +"bxm" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bxn" = ( +/obj/structure/target, +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"bxA" = ( +/obj/structure/machinery/power/apc/almayer/hardened/south, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"bxB" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bxC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"bxE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"bxN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"bxY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"byb" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"byc" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_three) +"byd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_four) +"bye" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or4privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"bym" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"byn" = ( +/obj/effect/landmark/start/marine/leader/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"byr" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"byt" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"byu" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"byv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"byw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"byE" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bzg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"bzo" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"bzz" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"bzD" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/telecomms) +"bzI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bzQ" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bzR" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -18 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"bzS" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"bAd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/squads/alpha) +"bAe" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/lifeboat) +"bAh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bAi" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bAs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/weapon_room) +"bAu" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper High Security Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/securestorage) +"bAy" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"bAH" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"bAJ" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"bAK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) +"bAN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bAO" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bAP" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bAQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bAS" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bAU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bAY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bAZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bBd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"bBe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"bBg" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"bBl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"bBu" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBx" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBy" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bBA" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/weapon_room) +"bBC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"bBD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/surface/table/almayer, +/obj/structure/transmitter/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office Second Line"; + pixel_x = -5; + pixel_y = 3 + }, +/obj/structure/transmitter/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office"; + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bBH" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"bBN" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bBQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "southcheckpoint"; + name = "South Checkpoint Shutters"; + req_one_access_txt = "3;12;19" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bBR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bBU" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"bBY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bCd" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_lobby) +"bCe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"bCg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bCh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"bCk" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"bCl" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bCm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bCn" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"bCs" = ( +/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"bCu" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bCv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"bCx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Briefing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"bCy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"bCz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bCA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bCB" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"bCD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"bCG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"bCM" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bCN" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bCP" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"bCR" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"bCS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"bCY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bCZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bDn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"bDs" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"bDv" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bDF" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + unacidable = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room/notunnel) +"bDH" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bDI" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bDL" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Combat Support Secondary Preparations"; + req_one_access_txt = "19;27;22" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"bDO" = ( +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"bDP" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"bDQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bDT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bDU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"bDV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bDW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bDX" = ( +/obj/structure/closet/crate, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/industrial, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bDY" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/medium_stack{ + amount = 40; + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/stack/sheet/plasteel/small_stack{ + amount = 15 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bDZ" = ( +/obj/structure/closet/crate/internals, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bEa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/cryo_cells) +"bEb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/cryo_cells) +"bEc" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bEd" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/cryo_cells) +"bEg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bEh" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/storage/backpack/marine, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"bEi" = ( +/obj/structure/supply_drop/alpha, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"bEk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_aft_hallway) +"bEl" = ( +/obj/structure/machinery/computer/supply_drop_console/limited, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"bEm" = ( +/obj/structure/supply_drop/delta, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"bEp" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/squads/req) +"bEr" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bEs" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bEv" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/brig/general_equipment) +"bEw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"bEx" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"bEA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bEF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/weapon_room) +"bEG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"bEN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bEO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bEP" = ( +/obj/item/device/radio/marine{ + pixel_x = 6 + }, +/obj/item/device/radio/marine{ + pixel_x = 3 + }, +/obj/item/device/radio/marine, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bER" = ( +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/storage/box/masks{ + layer = 3.2; + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/storage/box/gloves{ + layer = 3.1; + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/masks{ + layer = 3.1; + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/box/masks{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"bES" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bFa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bFg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"bFj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bFk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"bFl" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"bFp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"bFq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silverfull, +/area/almayer/living/cryo_cells) +"bFr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"bFs" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/cryo_cells) +"bFt" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"bFA" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"bFB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bFC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"bFJ" = ( +/obj/docking_port/stationary/marine_dropship/almayer_hangar_2, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bFP" = ( +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bFR" = ( +/obj/docking_port/stationary/marine_dropship/almayer_hangar_1, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bFX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"bGa" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"bGc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/command/lifeboat) +"bGn" = ( +/obj/structure/barricade/plasteel/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bGo" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby1"; + name = "\improper RO Line 1" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/squads/req) +"bGq" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bGw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bGy" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"bGz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"bGF" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGG" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGH" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGI" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/prop/almayer/hangar_stencil, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGK" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGM" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGN" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGO" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGP" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bGU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bHg" = ( +/obj/structure/bed, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"bHk" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"bHp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bHq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"bHu" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"bHB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bHD" = ( +/obj/structure/dropship_equipment/weapon/launch_bay, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"bHG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"bHI" = ( +/obj/structure/anti_air_cannon, +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bHP" = ( +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bId" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bIe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bIj" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/hallways/lower/port_midship_hallway) +"bIn" = ( +/obj/structure/machinery/computer/cameras/almayer_network, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"bIo" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bIp" = ( +/obj/effect/step_trigger/ares_alert/mainframe, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Mainframe Left"; + name = "\improper ARES Mainframe Shutters"; + plane = -7 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"bIs" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bIw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/computer/working_joe, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"bIx" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"bIy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/navigation) +"bIJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/book/manual/chef_recipes, +/obj/item/reagent_container/food/condiment/sugar{ + pixel_x = 10 + }, +/obj/item/clothing/head/chefhat, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"bIM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"bIO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_fore_hallway) +"bIU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"bIW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"bJe" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_2"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"bJf" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"bJl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Auxiliary Support Officers Quarters"; + req_one_access_txt = "37" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"bJt" = ( +/turf/closed/wall/almayer, +/area/almayer/living/grunt_rnr) +"bJw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"bJC" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/charlie) +"bJD" = ( +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"bJE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/squads/bravo) +"bJH" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black{ + pixel_x = -4 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = 10; + pixel_y = 22 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"bJS" = ( +/obj/structure/surface/rack, +/obj/item/tool/wrench, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bJT" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bJU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"bJX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bJY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bJZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"bKb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Particle Cannon Systems Room"; + req_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"bKd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/item/storage/firstaid/fire, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bKf" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"bKk" = ( +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"bKm" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." + }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"bKn" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/weapon_room) +"bKp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bKq" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"bKs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bKt" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bKu" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bKz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bKA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bKC" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"bKD" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"bKI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"bKJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/cryo_cells) +"bKM" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"bKP" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"bKQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bKX" = ( +/obj/structure/machinery/chem_dispenser/corpsman{ + pixel_y = 3 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"bLc" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"bLf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"bLh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bLi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bLj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"bLk" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/weapon_room) +"bLl" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bLm" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bLo" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bLp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"bLq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/navigation) +"bLr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"bLs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bLw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bLx" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "oxygen_lower_out" + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bLy" = ( +/turf/open/floor/engine/nitrogen, +/area/almayer/engineering/airmix) +"bLz" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "nit_lower_out" + }, +/turf/open/floor/engine/nitrogen, +/area/almayer/engineering/airmix) +"bLA" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 1 + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bLC" = ( +/obj/structure/pipes/vents/pump/siphon/on{ + dir = 1; + id_tag = "mixed_lower_out" + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bLD" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bLF" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_n"; + name = "\improper Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"bLH" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/weapon_room) +"bLJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bLO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"bLP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"bLX" = ( +/obj/vehicle/powerloader, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bMa" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"bMf" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bMg" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Synth Bay" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"bMq" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"bMu" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"bMx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"bMy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"bMA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"bMC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + pixel_x = -32 + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"bMD" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"bME" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"bMJ" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bMK" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/nitrogen, +/area/almayer/engineering/airmix) +"bML" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"bMO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"bMP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bMR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"bMS" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bMT" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/sign/safety/twilight_zone_terminator{ + pixel_x = 8; + pixel_y = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bMU" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bMZ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"bNa" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"bNb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"bNe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bNf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bNg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"bNh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/port_emb) +"bNi" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"bNk" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"bNl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bNm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/weapon_room) +"bNn" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"bNo" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bNq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"bNr" = ( +/obj/structure/sign/safety/storage{ + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bNs" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bNt" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"bNw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/kitchen/knife, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"bNA" = ( +/obj/structure/machinery/computer/ordercomp, +/obj/structure/sign/safety/galley{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bNB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/wy_mre, +/obj/effect/spawner/random/tool, +/obj/item/tool/hand_labeler, +/obj/item/clipboard, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bNC" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bNE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"bNF" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"bNG" = ( +/obj/structure/machinery/cm_vending/clothing/tl/charlie{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"bNL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"bNM" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"bNN" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"bNP" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bNQ" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"bNS" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/navigation) +"bOq" = ( +/obj/structure/prop/almayer/cannon_cables, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"bOs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/weapon_room) +"bOw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"bOx" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"bOC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"bOG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"bOJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Briefing Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"bOK" = ( +/obj/structure/machinery/door_control{ + id = "ROlobby1"; + name = "RO Line 1 Shutters"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;21" + }, +/obj/structure/machinery/line_nexter_control{ + id = "line1"; + pixel_x = -4; + pixel_y = -2; + req_one_access_txt = "1;21" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bOM" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bON" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bOO" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bOQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/item/facepaint/green{ + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"bOR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"bOT" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/gear/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"bOZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"bPa" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"bPg" = ( +/obj/vehicle/powerloader, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/shipboard/weapon_room) +"bPh" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"bPi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"bPk" = ( +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"bPn" = ( +/obj/structure/machinery/computer/orbital_cannon_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"bPo" = ( +/obj/structure/prop/almayer/cannon_cable_connector, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"bPq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"bPr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bPs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"bPu" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/lower_medical_medbay) +"bPz" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"bPC" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/weapon_room) +"bPD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bPF" = ( +/turf/closed/wall/almayer/white/outer_tile, +/area/almayer/medical/medical_science) +"bPG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bPH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"bPJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"bPL" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"bPM" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/living/cryo_cells) +"bPO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/living/briefing) +"bQc" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 6"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"bQt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQA" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"bQD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"bQE" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQG" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/obj/item/book/manual/orbital_cannon_manual, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"bQM" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"bQQ" = ( +/obj/structure/sign/ROsign{ + layer = 3 + }, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"bQS" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/cargo/blend, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"bQU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"bQX" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bQZ" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/charlie) +"bRa" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/living/cryo_cells) +"bRc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"bRe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bRf" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"bRg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"bRo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"bRt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_umbilical) +"bRO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"bRP" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"bRV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"bSa" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"bSb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"bSe" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/squads/bravo) +"bSf" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/port_point_defense) +"bSn" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) +"bSv" = ( +/turf/closed/wall/almayer, +/area/almayer/living/tankerbunks) +"bSD" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"bSH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"bSJ" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/delta) +"bSK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/tool/wrench, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"bSL" = ( +/obj/structure/sign/nosmoking_1, +/turf/closed/wall/almayer, +/area/almayer/squads/delta) +"bSN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"bSR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bST" = ( +/obj/structure/closet/secure_closet/hydroresearch, +/obj/item/reagent_container/glass/watertank, +/obj/item/reagent_container/glass/watertank, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"bSZ" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bTa" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bTb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" + }, +/turf/open/floor/plating, +/area/almayer/squads/bravo) +"bTg" = ( +/obj/docking_port/stationary/emergency_response/external/hangar_port{ + dwidth = 8 + }, +/turf/open/space, +/area/space) +"bTn" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) +"bTq" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PL-3"; + req_access = null + }, +/turf/open/floor/plating, +/area/almayer/powered) +"bTt" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = 21 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"bTx" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bTy" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/squads/delta) +"bTz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"bTA" = ( +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"bTC" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bTE" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"bTG" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"bTH" = ( +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"bTJ" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bTM" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bTN" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"bTO" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/port_point_defense) +"bTR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bTS" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bTT" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/shipboard/weapon_room) +"bTU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/dogtag{ + desc = "A blank marine's information dog tag. The word ranger and a pawprint is scratched into it." + }, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"bTV" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"bTW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"bTY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"bUa" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"bUb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"bUf" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"bUi" = ( +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"bUo" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) +"bUp" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"bUq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"bUr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"bUy" = ( +/obj/structure/closet/crate/ammo, +/obj/structure/machinery/light/small, +/obj/item/ammo_box/magazine/empty, +/obj/item/ammo_box/magazine/empty, +/obj/structure/machinery/door_control{ + id = "crate_room3"; + name = "storage shutters"; + pixel_x = -26 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"bUH" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bUN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"bUO" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"bUQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"bUT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"bUU" = ( +/obj/structure/machinery/cm_vending/clothing/tl/delta{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"bVb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"bVd" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"bVe" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"bVn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"bVo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"bVq" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"bVs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"bVv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"bVw" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/briefing) +"bVx" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"bVy" = ( +/obj/structure/machinery/chem_dispenser/corpsman{ + pixel_y = 3 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"bVE" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"bVM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bVN" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"bVR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"bVU" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/port_point_defense) +"bWc" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"bWd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bWe" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWf" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bWg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"bWh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-4"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"bWn" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWo" = ( +/obj/docking_port/stationary/emergency_response/port2, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"bWq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"bWr" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"bWJ" = ( +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/structure/machinery/door/window/eastright, +/obj/structure/window/reinforced/tinted/frosted, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"bWL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bWQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"bWT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/co2_knife{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"bXc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"bXe" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"bXf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"bXh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"bXo" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"bXw" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_two) +"bXy" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"bXz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"bXH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"bXY" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"bYa" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"bYn" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/port) +"bYq" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bYu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/uniform_supply, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"bYv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + name = "\improper Requisitions Storage" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"bYw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bYz" = ( +/obj/structure/sign/safety/south{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"bYF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"bYL" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"bYW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/panic) +"bYY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"bZa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"bZc" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"bZe" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"bZf" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"bZi" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bZj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bZn" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"bZo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"bZr" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/squads/req) +"bZw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"bZJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/landmark/map_item, +/obj/item/device/binoculars, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"bZO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"bZR" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"bZS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"bZU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"cab" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cac" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cad" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cae" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"caf" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cag" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cah" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cai" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cak" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/evidence_storage) +"cal" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"caq" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"car" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cau" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/cryo_cells) +"caM" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"caN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"caO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"caS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_three) +"caT" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"cbg" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "\improper Command Ladder" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"cbh" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"cbm" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"cbn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/command/computerlab) +"cbu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"cbA" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cbF" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + pixel_x = 1; + pixel_y = 17; + req_access = null + }, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"cbL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"cbM" = ( +/obj/structure/closet/crate, +/obj/item/clothing/glasses/welding, +/obj/item/circuitboard, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ccb" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red/north, +/area/almayer/living/cryo_cells) +"ccd" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/cryo_cells) +"ccg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"cck" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"ccs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"ccx" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"ccG" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ccL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"ccN" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/cryo_cells) +"ccQ" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"cdf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"cdm" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"cdn" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"cdo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/cryo_cells) +"cdp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"cdA" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"cdB" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"cdI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"cdP" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie) +"cdT" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdU" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdV" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdX" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cdZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"cea" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"ceg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"cel" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ceC" = ( +/obj/structure/prop/almayer/ship_memorial, +/turf/open/floor/plating/almayer, +/area/almayer/living/starboard_garden) +"ceD" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-3"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"ceE" = ( +/turf/closed/wall/almayer, +/area/almayer/command/cichallway) +"ceK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"ceV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/upper/midship_hallway) +"ceY" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ceZ" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"cfk" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"cfm" = ( +/obj/structure/flora/pottedplant{ + desc = "Life is underwhelming, especially when you're a potted plant."; + icon_state = "pottedplant_22"; + name = "Jerry"; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cfo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"cfp" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cfq" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cft" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"cfE" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/starboard_missiles) +"cfT" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"cgl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"cgo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie_delta_shared) +"cgq" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"cgr" = ( +/obj/structure/machinery/cm_vending/clothing/medic/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgt" = ( +/obj/structure/machinery/cm_vending/clothing/engi/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgu" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgv" = ( +/obj/structure/machinery/cm_vending/clothing/leader/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgy" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"cgA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cgE" = ( +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"cgO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"cgT" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"cgU" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"chb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) +"chc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/body_scanconsole{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"chf" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"chk" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chl" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chm" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chn" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"chp" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"chq" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"chv" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"chL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/squads/bravo) +"chM" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"chN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"chO" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"chP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"chQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/squads/charlie) +"chR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"chS" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"chV" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"chW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"cib" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"cic" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/alpha) +"cif" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"cil" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"cir" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"civ" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering) +"cix" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-4"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"ciB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"ciN" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"ciQ" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"cjc" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"cjd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"cjf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"cjg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"cjk" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 6"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"cjm" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"cjt" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"cjA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cjC" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cjE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"cjW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"ckd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"cke" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ckh" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ckj" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/nanopaste{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"ckr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ckK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"ckP" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"ckQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"ckR" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ckW" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/lower) +"ckX" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"ckZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"cle" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_lobby) +"clg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"clh" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"cli" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"clj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"clk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"cll" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"clm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"cln" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1; + pixel_y = -29 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"clo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"clp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"cls" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"clw" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"clE" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clF" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clG" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clH" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"clJ" = ( +/obj/structure/machinery/cm_vending/clothing/medic/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clL" = ( +/obj/structure/machinery/cm_vending/clothing/engi/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clM" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clN" = ( +/obj/structure/machinery/cm_vending/clothing/leader/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clS" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clT" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clV" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"clW" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clX" = ( +/obj/structure/machinery/cm_vending/gear/smartgun, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clY" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"clZ" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"cme" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"cml" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"cmm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"cmn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"cmo" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/tool, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"cmr" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cmv" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"cmC" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"cmK" = ( +/obj/structure/window/reinforced, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"cmL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cmM" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/medical) +"cmN" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"cmS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"cmV" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"cnd" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"cnm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"cnn" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"cnq" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"cnr" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"cnu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"cnE" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"cnH" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Computer Lab" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"cnI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"cnM" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"cnR" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastleft{ + req_access = list(19) + }, +/obj/structure/machinery/door/window/westright, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/computerlab) +"cnS" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/command/computerlab) +"cnT" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper Computer Lab"; + req_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/computerlab) +"cnV" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"cnZ" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/folder/white, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/clipboard, +/obj/item/clipboard, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"coa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = -4 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -21 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"cod" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"cog" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"coj" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"coo" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"cop" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/tankerbunks) +"cov" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/obj/structure/sign/safety/security{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"coB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"coD" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 12 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"coJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"coT" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"coZ" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"cpj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"cpk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"cpp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"cpz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cpJ" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "or3privacyshutter"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/medical/operating_room_three) +"cpK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby2"; + name = "\improper RO Line 2" + }, +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/squads/req) +"cpP" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"cqd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/starboard_umbilical) +"cqm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/white{ + pixel_y = 6 + }, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cqp" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"cqz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"cqH" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"cqJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/general_equipment) +"cqM" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"cqQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"cqY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar/tarbacktube, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"crc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"crh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"cri" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"crD" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/squads/req) +"csd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"csy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"csI" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"csZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"cth" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"ctp" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"cts" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"ctw" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"ctx" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"ctJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"ctQ" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"ctT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Cryogenics Bay" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cryo) +"cuq" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"cus" = ( +/obj/docking_port/stationary/lifeboat_dock/starboard, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"cuy" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cuC" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/starboard) +"cuN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"cuY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"cvb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"cvg" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cvx" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/cryo_cells) +"cvH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"cvI" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cvZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cic) +"cwo" = ( +/obj/structure/largecrate/random/mini/chest{ + pixel_x = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"cwC" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/starboard_hallway) +"cwS" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cwX" = ( +/obj/structure/ladder{ + height = 1; + id = "cicladder1" + }, +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"cxc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"cxk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"cxB" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) +"cxF" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"cyc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"cyf" = ( +/obj/structure/platform/metal/almayer/north, +/obj/item/tool/mop, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"cyh" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Passenger Cryogenics Bay" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) +"cyo" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"cyp" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/plasticflaps, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"cyv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"cyL" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/maint/upper/mess) +"cyP" = ( +/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ + density = 0; + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"cyR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"cyZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"czN" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"czR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cAa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"cAm" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"cAy" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"cAF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"cAR" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/mp_bunks) +"cBb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"cBd" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"cBj" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"cBs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"cBw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"cBC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_aft_hallway) +"cBV" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"cCa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"cCE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cCL" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cDb" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"cDn" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/clothing/mask/cigarette{ + pixel_y = 8 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = 4; + pixel_y = 11 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"cDs" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"cDx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_p) +"cDC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"cDH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cDI" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"cDN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"cDP" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/hallways/upper/midship_hallway) +"cDZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/living/tankerbunks) +"cEi" = ( +/obj/structure/sign/poster, +/turf/closed/wall/almayer, +/area/almayer/living/grunt_rnr) +"cEl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"cEA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"cEC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"cEG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"cFg" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 + }, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs2"; + name = "ARES Reception Stairway Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cFh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"cFn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"cFC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"cFP" = ( +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"cGd" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"cGA" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"cGB" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/lower/l_m_s) +"cGO" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"cGR" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"cGV" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"cGY" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"cHc" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"cHk" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/warden_office) +"cHl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"cHu" = ( +/turf/closed/wall/almayer/research/containment/wall/south, +/area/almayer/medical/containment/cell/cl) +"cHB" = ( +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"cHC" = ( +/obj/structure/machinery/cm_vending/clothing/combat_correspondent, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"cHE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"cHG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"cIe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"cIm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"cIr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"cIx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"cIG" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"cIO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"cIS" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"cIW" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Engine Monitoring" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"cJm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"cJs" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"cJu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"cJv" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 + }, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"cJE" = ( +/obj/structure/sign/prop2, +/turf/closed/wall/almayer, +/area/almayer/shipboard/sea_office) +"cJI" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit."; + icon_state = "delivery_engi"; + name = "Returns"; + pixel_x = 25; + pixel_y = 28 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"cJK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cJM" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 3"; + layer = 3.2; + name = "Cell 3 Control"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + has_wall_divider = 1; + id = "Containment Cell 2"; + layer = 3.2; + name = "Cell 2 Control"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 2"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = 7; + req_one_access_txt = "19;28" + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 3"; + name = "Containment Lockdown"; + pixel_x = 13; + pixel_y = -6; + req_one_access_txt = "19;28" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"cKm" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -8 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 12 + }, +/obj/item/clothing/head/militia/bucket{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"cKJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/interrogation) +"cKL" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/upper_engineering/port) +"cLc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"cLd" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/mgoggles/prescription, +/obj/item/clothing/glasses/mbcg, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"cLl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/fancy/cigar, +/obj/item/tool/lighter/zippo, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"cLo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow, +/area/almayer/command/airoom) +"cLq" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"cLA" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"cLC" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"cLN" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"cMl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"cMx" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_a_s) +"cMz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"cMH" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"cMN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"cMV" = ( +/obj/structure/sign/prop1{ + pixel_x = -32; + pixel_y = 2 + }, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"cMW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"cNf" = ( +/turf/open/floor/almayer/orange, +/area/almayer/living/briefing) +"cNm" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"cNC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"cNH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + id = "Containment Cell 4"; + name = "\improper Containment Cell 4" + }, +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 4"; + locked = 1; + name = "\improper Containment Cell 4" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell/cl) +"cNI" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"cNJ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"cNK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"cNM" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"cNX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"cOd" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"cOe" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/midship_hallway) +"cOh" = ( +/obj/item/stool{ + pixel_x = 15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"cOo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"cOt" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"cOK" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/starboard) +"cOY" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/structure/machinery/cm_vending/clothing/dress/corporate_liaison, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"cPg" = ( +/obj/structure/sign/safety/north{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"cPj" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/p_bow) +"cPK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"cPP" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/obj/structure/sign/poster/hunk{ + pixel_x = -25; + pixel_y = 10 + }, +/obj/item/trash/buritto, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cQc" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/living/briefing) +"cQg" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"cQo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) +"cQv" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/general_equipment) +"cQy" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"cQC" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -8; + pixel_y = 28 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"cQF" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"cQG" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"cQL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/lobby) +"cQW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"cRb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"cRi" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"cRv" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/port_missiles) +"cRK" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"cRL" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/starboard) +"cSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"cSi" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"cSk" = ( +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"cSm" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"cSx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"cSC" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/starboard_missiles) +"cSH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"cSP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/lower/port_midship_hallway) +"cSQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"cST" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"cTf" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"cTy" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"cTC" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/offices) +"cTM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"cTX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"cUl" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"cUo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/lifeboat_pumps/north1) +"cVb" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"cVf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cVq" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"cVt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"cVw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"cVK" = ( +/obj/structure/surface/rack, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/spawner/random/facepaint, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"cVZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"cWb" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"cWm" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/structure/sign/safety/med_life_support{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"cWr" = ( +/obj/structure/machinery/photocopier{ + density = 0; + layer = 2.9; + pixel_x = -3; + pixel_y = 16 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -19; + pixel_y = 5 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/offices) +"cWw" = ( +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"cWy" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/snacks/packaged_burger, +/obj/item/reagent_container/food/snacks/packaged_burger, +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"cWE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"cXi" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"cXm" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"cXq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/fore_hallway) +"cXz" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_x = 8 + }, +/obj/structure/transmitter/rotary{ + name = "Reporter Telephone"; + phone_category = "Almayer"; + phone_id = "Reporter"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/device/toner{ + pixel_x = -2; + pixel_y = -11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"cXC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/containment) +"cXD" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"cXF" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 4"; + layer = 2.1; + name = "Mounted Flash"; + pixel_x = -15; + pixel_y = 30 + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell/cl) +"cXR" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) +"cXV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"cXW" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + req_one_access_txt = "4;28" + }, +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/upper_medical) +"cXX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"cXY" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"cYo" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"cYu" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"cYN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"cYT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"cZb" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"cZe" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_s) +"cZh" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"cZp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"cZq" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"cZB" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"cZI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"cZO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"cZV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigarettes/wypacket, +/obj/item/tool/lighter, +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"cZW" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"dan" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/u_a_s) +"daz" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"daF" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"daI" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Armourer's Workshop"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"dbc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"dbe" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"dbn" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c200{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 + }, +/obj/item/reagent_container/pill/happy, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"dbq" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/engineering/upper_engineering/port) +"dbs" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_s"; + dir = 1; + name = "\improper Brig Maintenance" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown_2"; + name = "\improper Perma Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"dbv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/computer{ + pixel_x = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 1; + pixel_y = 25 + }, +/obj/item/prop/magazine/book/borntokill{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"dbw" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"dbK" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"dbM" = ( +/obj/structure/machinery/door/poddoor/almayer/blended/liaison{ + id = "RoomDivider" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"dbX" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/mess) +"dcd" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"dck" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"dcp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"dcx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"dcy" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/perma) +"dcR" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"dcT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"dcX" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"ddf" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"ddj" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/interrogation) +"ddk" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"ddw" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"ddz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"ddF" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"ddL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"ddM" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"ddO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"deq" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"deD" = ( +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_x = -5 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"deF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"deH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"deT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"dfa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"dfg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"dfk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"dfA" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"dfC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"dgg" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"dgl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"dgx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 13 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"dgE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"dgI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/cafeteria_officer) +"dha" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"dhd" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"dhj" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"dho" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"dhp" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"dhA" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"dhQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"dhR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "north_central_checkpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"div" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"diw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"diz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D4"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"diJ" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"djQ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"dka" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"dkj" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"dkq" = ( +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Shutters"; + pixel_x = -30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"dkz" = ( +/obj/structure/pipes/vents/scrubber/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"dkO" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/obj/structure/catwalk{ + health = null + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"dkP" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dkX" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"dll" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"dlo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"dlu" = ( +/obj/effect/landmark/start/marine/bravo, +/obj/effect/landmark/late_join/bravo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"dlT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"dmg" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"dmr" = ( +/obj/structure/transmitter{ + name = "Brig Offices Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Main Offices"; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"dmv" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/command/cichallway) +"dmA" = ( +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"dmE" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/incendiary, +/obj/item/mortar_shell/incendiary, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"dmF" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"dmR" = ( +/obj/effect/glowshroom, +/obj/effect/glowshroom{ + pixel_y = 16 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"dmZ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 1"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"dnh" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/turf/open/floor/almayer/red/northwest, +/area/almayer/maint/upper/u_a_p) +"dnC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"dnE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"dnH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"dnP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"dnS" = ( +/obj/structure/safe, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) +"dnZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"dof" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + name = "\improper Upper Engineering" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"doJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"doP" = ( +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "delivery outlet"; + pixel_x = -1; + pixel_y = 25; + range = 0 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"doU" = ( +/obj/structure/surface/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"doX" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"dpo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"dpA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dpO" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"dqb" = ( +/obj/structure/sign/safety/security{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"dqg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"dqj" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/command/lifeboat) +"dqw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/weapon_room/notunnel) +"dqD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"dqE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Conference and Office Area" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"drj" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"drk" = ( +/obj/structure/closet, +/turf/open/floor/almayer/silver/north, +/area/almayer/engineering/port_atmos) +"dro" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"drP" = ( +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigarettes/wypacket{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/tool/lighter/zippo/gold{ + pixel_x = 2 + }, +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + dir = 4; + layer = 3.2; + pixel_x = -15; + pixel_y = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"drT" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/obj/item/storage/fancy/vials, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"drU" = ( +/obj/structure/machinery/door_control{ + id = "ARES JoeCryo"; + name = "ARES WorkingJoe Bay Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Comms" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"dsn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"dsA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/execution) +"dsY" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dtu" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_a_s) +"dtE" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"dtH" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"duo" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"dut" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc04"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = 23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"duv" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"duw" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"duz" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"duF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"duO" = ( +/obj/structure/machinery/chem_dispenser/corpsman, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"duT" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 2"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"duV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"dvg" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/obj/structure/sign/safety/chem_lab{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/chemistry) +"dvl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"dvs" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"dvD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"dvZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"dwj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"dwl" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"dwr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/centrifuge{ + layer = 3.1; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"dwu" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"dwA" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"dwI" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"dxu" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_four) +"dxv" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"dxF" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/stair_clone/upper) +"dxJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"dxK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"dxT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dya" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 2"; + name = "\improper cell shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Isolation Cell" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"dyb" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"dyd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dyj" = ( +/obj/structure/closet/secure_closet/commander, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/device/whistle, +/obj/item/device/megaphone, +/obj/item/device/radio, +/obj/item/clothing/shoes/laceup, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"dyp" = ( +/obj/structure/machinery/ares/cpu, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"dyq" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"dyx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"dyK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/ce_room) +"dzp" = ( +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"dzt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Secondary Processors"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"dzG" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"dzX" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"dAm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dAq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"dAA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dAQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"dAX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"dBc" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) +"dBg" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"dBi" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) +"dBj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/hydroponics) +"dBp" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"dBs" = ( +/obj/structure/machinery/cm_vending/clothing/dress, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"dBG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"dBH" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"dBI" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 4 + }, +/obj/item/trash/USCMtray{ + pixel_y = 6 + }, +/obj/item/trash/USCMtray{ + pixel_y = 8 + }, +/obj/item/trash/USCMtray{ + pixel_y = 10 + }, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"dBO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"dBR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"dBS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"dCe" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) +"dCr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"dCx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"dCz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"dCD" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"dCK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"dCM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"dDp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"dDt" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"dDJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"dDL" = ( +/obj/structure/machinery/light/double/blue{ + light_color = "#a7dbc7"; + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/upper_medical) +"dDM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop/hangar) +"dDT" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"dEk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"dEm" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/containment/cell) +"dEn" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"dEo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"dEp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"dEt" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"dEG" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"dEJ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north2) +"dEK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"dEL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"dEQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"dEX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/bombclosetsecurity, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"dFk" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/command/lifeboat) +"dFl" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"dFF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"dFL" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"dFM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"dFN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"dFR" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/cichallway) +"dFW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"dGg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"dGr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"dGC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"dGP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"dGT" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"dGU" = ( +/obj/structure/sign/poster/propaganda{ + pixel_x = -27 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dHd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"dHe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"dHu" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = 23 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"dHV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/unary/freezer{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"dHZ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/plating, +/area/almayer/living/bridgebunks) +"dIi" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) +"dIn" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"dID" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"dIH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"dII" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"dJe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"dJy" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"dJC" = ( +/obj/structure/machinery/sentry_holder/almayer/mini/aicore, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"dJG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dJI" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/arcturianstopsign{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"dJJ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution_storage) +"dJO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + explo_proof = 1; + name = "ARES Chamber Lockdown"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4; + density = 0; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + unacidable = 0; + unslashable = 0 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"dJS" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"dKp" = ( +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell/cl) +"dKK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dKL" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/airmix) +"dKO" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"dKS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"dKX" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"dLc" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"dLe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"dLt" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"dLz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"dMj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"dMB" = ( +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"dME" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"dMK" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 8 + }, +/area/almayer/medical/containment/cell) +"dNj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"dNq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/containment) +"dNt" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"dNv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"dNM" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"dNW" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"dNZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"dOe" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/reagent_dispensers/ethanoltank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"dOl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"dOG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"dON" = ( +/obj/item/stack/cable_coil{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/trash/pistachios, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"dPd" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"dPk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"dPm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"dPq" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"dPC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"dPH" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"dPO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"dPQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"dPT" = ( +/obj/structure/machinery/brig_cell/cell_2{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"dQp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"dQA" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower) +"dQH" = ( +/obj/item/device/multitool, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"dQV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dRh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"dRj" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/mp_bunks) +"dRs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"dRv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"dRA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"dRD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices/flight) +"dRP" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"dRT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"dSm" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"dSp" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"dSI" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/hallways/upper/midship_hallway) +"dSJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"dSX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_two) +"dSZ" = ( +/obj/structure/bed/chair, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"dTd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dTn" = ( +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"dTr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"dTI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"dTS" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"dTZ" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"dUE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"dUR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"dUS" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"dUZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"dVd" = ( +/obj/structure/machinery/seed_extractor{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"dVe" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/briefing) +"dVn" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"dVs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"dVu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"dVO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"dVR" = ( +/obj/structure/ladder{ + height = 2; + id = "AftPortMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"dWc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"dWg" = ( +/obj/effect/landmark/start/cargo, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"dWw" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"dWA" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"dWJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"dWX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"dXb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"dXd" = ( +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"dXo" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"dXr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"dXG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"dXI" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/stern_point_defense) +"dXV" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"dXY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"dYb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"dYc" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"dYl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"dYu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"dYC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"dYR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"dYU" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8; + plane = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"dYX" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"dZu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"dZZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"eaf" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"ean" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 3"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"eas" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"eax" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"eaz" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"eaA" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"ebd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"ebf" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." + }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"ebn" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"ebp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ebI" = ( +/obj/item/clothing/shoes/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"ebN" = ( +/turf/closed/wall/almayer/aicore/reinforced, +/area/almayer/command/airoom) +"ecb" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ecj" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"eco" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"ecr" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/captain_mess) +"ecS" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"ecZ" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge4" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"edn" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"edo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"edv" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"edG" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"edV" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) +"eed" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"eeh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eei" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/cups{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"eem" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/snacks/boiledrice, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"eet" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"eeu" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/door_control{ + id = "kitchen"; + name = "Kitchen Shutters"; + pixel_x = -25 + }, +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"eeA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"eeC" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"eeR" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"efj" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"efk" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"efC" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"efJ" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"efK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"efP" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"efT" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"efV" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"egc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc01"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = -23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ege" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Main Staircase"; + dir = 4; + pixel_y = -8 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"egt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Chapel" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/chapel) +"egD" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/lower/port_midship_hallway) +"ehc" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"ehi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"ehj" = ( +/obj/item/stack/catwalk, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"ehl" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/interrogation) +"ehm" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"ehx" = ( +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"ehL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) +"ehM" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"ehR" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/red{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"ehX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"eim" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"eiq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/magazine/dirty, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"eiw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_two) +"eiE" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/optable, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"eiN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"eiP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ejj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/wrench{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/tool/wrench{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ejo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"ejt" = ( +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/command/lifeboat) +"ejx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"ejV" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"ejY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"eky" = ( +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"ekz" = ( +/obj/structure/girder/displaced, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"ekM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"ekR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_umbilical) +"ekY" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Memorial Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"ekZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + pixel_y = 10 + }, +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + name = "brig cameras console"; + pixel_y = -11 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"elf" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"elv" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"elx" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"elE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_one) +"elR" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"elV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + dir = 2; + name = "\improper Execution Equipment" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution_storage) +"elY" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"eme" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"eml" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"emn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"emp" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/processing) +"emr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"emw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"emA" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_s) +"emC" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"emK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/medical_science) +"emL" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/midship_hallway) +"ene" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/securestorage) +"eni" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"enK" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"enQ" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"enY" = ( +/obj/item/storage/firstaid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"eob" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"eox" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"eoy" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"eoE" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"eoG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"eoK" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"epk" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"epu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"epJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"epT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"eqb" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp/denied{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/device/eftpos{ + eftpos_name = "Cargo Bay EFTPOS scanner"; + pixel_x = -10 + }, +/obj/item/tool/stamp/ro{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/storage/fancy/cigar{ + pixel_x = 6 + }, +/obj/item/ashtray/glass{ + pixel_x = 11; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"eqd" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/surface/rack, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"eqm" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control{ + id = "Secretroom"; + explo_proof = 1; + layer = 2.5; + name = "Shutters"; + use_power = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"eqB" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/engineering/port_atmos) +"eqD" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"eqI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"eqL" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"eqN" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"eqP" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"erd" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell/cl) +"ere" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"erh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"ern" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"erE" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"erF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"erG" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/effect/landmark/start/marine/smartgunner/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"erL" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = -10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"erN" = ( +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"esd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"esm" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"esn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/multitool{ + desc = "A large handheld tool used to override various machine functions. Primarily used to pulse Airlock and APC wires on a shortwave frequency. It contains a small data buffer as well. This one is comically oversized. Made in Texas."; + icon_state = "multitool_big"; + name = "\improper Oversized Security Access Tuner"; + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/stack/sheet/cardboard/medium_stack{ + layer = 3.01; + pixel_x = -7; + pixel_y = -6 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"esC" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = -3 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/prop/magazine/dirty{ + pixel_x = -6; + pixel_y = -10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/captain_mess) +"esF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"esK" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"esM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"esQ" = ( +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/upper/fore_hallway) +"esT" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/lifeboat) +"etf" = ( +/turf/open/floor/almayer/plating_striped/north, +/area/almayer/command/lifeboat) +"etn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"eto" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "CMO Shutters"; + name = "Office Shutters"; + req_access_txt = "5"; + pixel_x = -29 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"ets" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"ety" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"etE" = ( +/obj/structure/prop/almayer/name_stencil, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"etF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"etM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"etN" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"eua" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"eup" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"euL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Starboard Railguns and Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"euN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Left"; + name = "ARES Mainframe Lockdown"; + pixel_x = 24; + pixel_y = 24; + req_one_access_txt = "200;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"euV" = ( +/turf/open/floor/almayer/uscm/directional/logo_c/west, +/area/almayer/command/cic) +"euW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"eva" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"evg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"evk" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"evC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "civ_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = -24; + pixel_y = -7; + req_access_txt = "31" + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"evM" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"evR" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"evX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ewc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"ewr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"ewI" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Execution Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/execution) +"ewO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"ewS" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"exb" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"exc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"exi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"exl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"exy" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"exQ" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eyl" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"eyD" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/starboard_hallway) +"eyM" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"eyQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"eyR" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"eyV" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) +"ezq" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ezG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"ezQ" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ezX" = ( +/obj/structure/bed/chair/wood/normal, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"eAg" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/squads/alpha) +"eAm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"eAx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"eAC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"eAF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"eAG" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/clipboard, +/obj/item/tool/pen{ + pixel_y = -17 + }, +/obj/item/paper_bin/uscm{ + pixel_y = -16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"eAI" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/engine_core) +"eAL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"eAN" = ( +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eAU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/basketball) +"eBd" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"eBe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"eBg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"eBj" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"eBx" = ( +/obj/structure/closet/emcloset/legacy, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/starboard_hallway) +"eBE" = ( +/obj/structure/machinery/photocopier{ + anchored = 0 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"eBG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"eBJ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"eBO" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"eBV" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"eBZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"eCt" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/item/stack/sheet/mineral/uranium{ + amount = 5 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"eCI" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/brig/execution) +"eDe" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"eDo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"eDq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"eDt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/processing) +"eDu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"eDv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"eDT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"eEc" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eEk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"eEo" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"eEw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"eFa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eFj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"eFG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/chemistry) +"eFK" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"eFM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"eFP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/fridge/organic, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"eFT" = ( +/obj/structure/bed/sofa/vert/grey, +/obj/structure/bed/sofa/vert/grey{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"eGq" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"eGr" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Records"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"eGH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"eGZ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"eHa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"eHx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"eHy" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"eHX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"eHY" = ( +/obj/structure/surface/rack, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"eIf" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"eIG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"eIN" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"eIO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"eIY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"eJg" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/aft_hallway) +"eJQ" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/command/lifeboat) +"eJU" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/lifeboat_pumps/north1) +"eJX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/ce_room) +"eKy" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"eKH" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"eKI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"eKJ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"eKQ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"eKT" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"eKZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"eLp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/supplycomp/vehicle, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"eLu" = ( +/obj/structure/sign/safety/three{ + pixel_x = 31; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"eLC" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"eLH" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"eLX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) +"eMb" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"eMr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"eMx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"eMI" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"eMJ" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/perma) +"eMP" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"eMZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"eNi" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/ce_room) +"eNI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "containmentlockdown_S"; + name = "\improper Containment Lockdown" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"eNL" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eNR" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"eOx" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"eOM" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-6"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"eON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"ePq" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"ePz" = ( +/obj/structure/largecrate/supply/weapons/pistols, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"ePM" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"ePN" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/plastic{ + amount = 5 + }, +/obj/item/stack/sheet/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"ePX" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/bed/sofa/south/white/right, +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/plush/therapy/random_color{ + pixel_y = -3 + }, +/obj/structure/sign/nosmoking_2{ + pixel_y = 29 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"eQj" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -5; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown"; + pixel_x = 6; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/obj/structure/surface/table/reinforced/almayer_B{ + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 4; + pixel_y = 12 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_y = -1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"eQm" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"eQz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"eQJ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eQR" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"eRi" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/black{ + pixel_y = 8 + }, +/obj/item/folder/yellow, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"eRu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"eRy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc04"; + name = "\improper Treatment Center" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"eRI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Reception Exterior"; + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"eRR" = ( +/obj/item/clothing/head/helmet/marine{ + pixel_x = 16; + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/grown/poppy, +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"eRS" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"eSk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"eSo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"eSp" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"eSN" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"eSU" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer1" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"eTb" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/stern) +"eTd" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/boonie{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/trash/popcorn, +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"eTm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"eTx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"eTB" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"eTC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) +"eTD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"eUe" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"eUf" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eUh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"eUn" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/chemistry) +"eUA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"eUZ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eVj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"eVm" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"eVv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"eVE" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"eVQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"eVR" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"eVT" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"eWf" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"eWp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"eWs" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"eWv" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"eWx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"eWF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"eXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"eXq" = ( +/turf/closed/wall/almayer, +/area/almayer/living/offices/flight) +"eXr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"eXy" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"eXD" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"eYj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eYn" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"eYp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"eYr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = -16 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"eYu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/squad_changer{ + pixel_x = -9 + }, +/obj/structure/machinery/computer/card{ + pixel_x = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"eYv" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"eYD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"eYF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"eYM" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = -22 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"eYQ" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_x = -32 + }, +/obj/effect/landmark/start/synthetic, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"eYR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering/port) +"eYU" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink_med_req" + }, +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/hydroponics) +"eZm" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_stern) +"eZo" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"eZC" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"eZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"eZR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"fag" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"far" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_aft_hallway) +"faE" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "law and engineering manuals bookcase"; + opacity = 0 + }, +/obj/item/book/manual/marine_law, +/obj/item/book/manual/detective, +/obj/item/book/manual/security_space_law, +/obj/item/book/manual/engineering_guide, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/orbital_cannon_manual, +/obj/item/book/manual/ripley_build_and_repair, +/obj/item/book/manual/engineering_hacking, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"faO" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"faR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"faX" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fbb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"fbe" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"fbo" = ( +/obj/structure/machinery/door_control{ + id = "kitchen2"; + name = "Main Kitchen Shutters"; + pixel_x = -28 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"fbr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "briglobby"; + dir = 2; + name = "\improper Brig Lobby" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"fbw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"fbB" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Psychiatric Care Unit" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"fbC" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/maint/hull/lower/l_m_s) +"fbR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"fbU" = ( +/obj/item/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"fbV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/north2) +"fca" = ( +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"fcf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"fco" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"fcy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"fcB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"fcE" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/basketball) +"fcM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"fcP" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"fcS" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"fdx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"fdE" = ( +/obj/item/clothing/mask/rebreather/scarf, +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"fdX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"fdZ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"fea" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"feb" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/execution) +"feo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"feq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"feD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"feG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"feI" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"feS" = ( +/obj/structure/machinery/door_control{ + id = "pobunk2"; + name = "PO2 Privacy Shutters"; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"feY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"ffg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/perma) +"ffq" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_y = 15 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ffx" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/tech/tanker, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"ffE" = ( +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"ffN" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"fgh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"fgl" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"fgm" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"fgt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/shipboard/brig/medical) +"fgy" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"fgE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/machinery/vending/cigarette, +/obj/item/ashtray/plastic{ + layer = 3.4; + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 19 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"fgR" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "courtyard window"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cells) +"fgU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"fhf" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"fhH" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"fhR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"fic" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"fie" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop) +"fix" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"fiQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"fje" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"fjo" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"fjz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"fjA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"fkC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"fkK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"fkX" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 8 + }, +/area/almayer/medical/containment/cell/cl) +"flf" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 1; + vent_tag = "Records" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"flr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"flD" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"flK" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"flL" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - SynthBay"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"flW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"fml" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"fmv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"fmB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/pilotbunks) +"fmZ" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_umbilical) +"fnc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"fnk" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"fnv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"fnx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "19" + }, +/obj/effect/landmark/map_item, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"fnA" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + access_modified = 1; + name = "\improper CMO's Bedroom"; + req_one_access_txt = "1;5" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"fnH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"fnI" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"foC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"foL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/squads/charlie) +"foN" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"foP" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_x = 29; + pixel_y = 3; + req_one_access_txt = "28" + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"foS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"fpi" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"fpA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"fpI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fpM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fpR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/starboard_atmos) +"fpT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"fpW" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) +"fqb" = ( +/obj/item/paper/prison_station/interrogation_log{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/item/limb/hand/l_hand{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"fqc" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"fqw" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fqA" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"fqC" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"fqJ" = ( +/obj/structure/machinery/door_control{ + id = "safe_armory"; + name = "Hangar Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"fqO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"fqQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"fqU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"fqW" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"fqZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"frb" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza{ + pixel_y = 8 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"frl" = ( +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"frt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 6; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = -6; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Courtyard Window Shutters"; + pixel_x = -6; + pixel_y = 9; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Cell Privacy Shutters"; + name = "Cell Privacy Shutters"; + pixel_x = 6; + pixel_y = 9; + req_access_txt = "3" + }, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/warden_office) +"frz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"frF" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"frM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"fsf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_umbilical) +"fsh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"fsp" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"fsR" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"fsU" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"fsV" = ( +/obj/structure/target, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"fuz" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"fuS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"fuT" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"fuU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"fuY" = ( +/obj/structure/bed/chair/bolted{ + dir = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/interrogation) +"fva" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fvd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"fvf" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) +"fvo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/weldingtool{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fvA" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"fvB" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"fvN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"fvV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"fwD" = ( +/obj/item/reagent_container/food/snacks/grown/poppy{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"fwK" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/starboard_umbilical) +"fwM" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"fwY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie_delta_shared) +"fxI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"fxJ" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"fxZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"fya" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"fyp" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"fyD" = ( +/obj/structure/machinery/light, +/obj/structure/ladder{ + height = 1; + id = "cicladder2" + }, +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"fyI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"fyT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + dir = 1; + name = "\improper Command Power Substation" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"fzc" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"fzq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"fzt" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"fzx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"fzP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/folder/black, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/machinery/door_control{ + id = "CE Office Shutters"; + name = "CE Office Shutters"; + pixel_x = -6; + pixel_y = 18; + req_access_txt = list(); + req_one_access_txt = "1;6" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/ce_room) +"fzT" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"fAa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/offices/flight) +"fAr" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"fBi" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fBo" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"fBO" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"fCg" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"fCi" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"fCp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"fCv" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fCG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"fCI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES JoeCryo"; + name = "\improper ARES Synth Bay Shutters"; + plane = -7 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"fCL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"fCT" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"fCW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"fDg" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"fDh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"fDj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"fDG" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"fDJ" = ( +/obj/effect/landmark/start/marine/engineer/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"fDU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fDV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"fEe" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"fEk" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"fEC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"fEF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fER" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"fFe" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"fFh" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"fFD" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"fFL" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"fFO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/upper_medical) +"fFQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"fFU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"fGa" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"fGd" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"fGg" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"fGi" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"fGn" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"fGu" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext"; + name = "Window Shutters"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "28" + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_x = -26; + pixel_y = 1; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"fGB" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"fGM" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"fHb" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"fHh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"fHz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"fHF" = ( +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"fIK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"fIM" = ( +/obj/effect/landmark/start/marine/tl/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"fIX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + name = "\improper Requisitions Auxiliary Storage Room"; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"fIZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n117{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"fJm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"fJp" = ( +/obj/structure/girder, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fJt" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"fJu" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"fJy" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"fJO" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"fJT" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4 + }, +/obj/item/seeds/wheatseed, +/obj/item/seeds/wheatseed, +/turf/open/floor/almayer/green/southeast, +/area/almayer/shipboard/brig/cells) +"fKe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"fKh" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/window, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"fKi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"fKt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/prop/dam/crane{ + bound_height = 32; + climbable = 1; + layer = 3.5; + pixel_y = -23 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fKw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 5"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"fKT" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"fKV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/paper{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fLf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"fLg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fLi" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"fLl" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_stern) +"fLt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"fLu" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Oxygen Supply Console" + }, +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"fLv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"fLF" = ( +/obj/structure/machinery/brig_cell/perma_2{ + pixel_x = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"fMe" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/obj/item/paper, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -10; + pixel_y = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"fMt" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 + }, +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/sign/safety/laser{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"fME" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"fMU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"fNd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fNi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/bed/chair/office/dark, +/obj/item/clothing/head/cmcap{ + pixel_x = -2; + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"fNH" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fNX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"fOk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"fOv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"fOz" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"fOK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"fOL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/upper_medical) +"fPn" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"fPp" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/living/port_emb) +"fPu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fPB" = ( +/obj/structure/machinery/ares/processor/apollo, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"fPF" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool, +/obj/item/tool/screwdriver{ + icon_state = "screwdriver7" + }, +/obj/item/tool/crowbar/red, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"fQn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"fQu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) +"fQy" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"fQD" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Core Chamber"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"fQS" = ( +/obj/structure/bed/chair/comfy/orange, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"fRg" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_s) +"fRr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/command/cichallway) +"fRC" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"fRL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"fRS" = ( +/obj/effect/landmark/start/warden, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/landmark/late_join/warden, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"fSl" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"fSm" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"fSx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"fSF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/obj/item/storage/firstaid/rad, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower) +"fTj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"fTl" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_s) +"fTm" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"fTt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"fTF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Laundry Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"fUz" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/storage/box/cups, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"fUA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"fUB" = ( +/obj/structure/closet/secure_closet/fridge/organic/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"fUC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fUZ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"fVe" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_p) +"fVk" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"fVo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/workshop) +"fVx" = ( +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range, +/area/almayer/command/airoom) +"fVz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"fVF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"fVG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"fWg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"fWi" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"fXg" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"fXx" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"fXz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"fXE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"fXN" = ( +/obj/effect/landmark/start/marine/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"fXO" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north2) +"fXP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"fXZ" = ( +/obj/docking_port/stationary/emergency_response/port3, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"fYb" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/morgue) +"fYf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"fYr" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/radio, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"fYZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"fZl" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/engine_core) +"fZo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"fZq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"fZy" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"fZA" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/obj/structure/machinery/meter, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) +"fZE" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"fZG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"fZR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"fZX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"fZZ" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"gac" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"gaJ" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/cryo) +"gaQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"gba" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command{ + department = "AI Core"; + pixel_y = 8 + }, +/obj/structure/transmitter/rotary{ + name = "AI Core Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Core"; + pixel_x = 8; + pixel_y = -8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"gbg" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 38 + }, +/obj/structure/machinery/door_control{ + id = "ARES Operations Right"; + name = "ARES Operations Shutter"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"gbm" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"gbs" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"gbw" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"gbX" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = 24; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"gcm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"gcN" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + access_modified = 1; + name = "\improper Senior Enlisted Advisor's Office"; + req_access = null; + req_access_txt = "19;29" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) +"gde" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"gdp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/hangar) +"gdG" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/mp_bunks) +"gdJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"gdS" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/laundry) +"gei" = ( +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17; + pixel_y = -7 + }, +/obj/structure/medical_supply_link, +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"gek" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"gel" = ( +/turf/closed/wall/almayer/research/containment/wall/west, +/area/almayer/medical/containment/cell/cl) +"gen" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"ger" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = 8 + }, +/obj/item/clipboard{ + pixel_x = -8 + }, +/obj/item/folder/white{ + pixel_x = -8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"geu" = ( +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"gfd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"gfo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"gfq" = ( +/obj/structure/closet/secure_closet/fridge/groceries, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"gfu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"gfG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"gfN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"gfW" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/lockerroom) +"ggh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"ggl" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ggo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ggt" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"ggz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"ggD" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"ggJ" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc03"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = 28; + pixel_y = -23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ggQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/airmix) +"ggS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"ghA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/handcard/uno_reverse_red{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/toy/deck/uno, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"ghF" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"gii" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/interrogation) +"gio" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"gip" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"giD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"giR" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) +"giW" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/upper/midship_hallway) +"gjg" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"gji" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"gjm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gjt" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"gjv" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"gjy" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"gjB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"gjK" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"gkd" = ( +/obj/effect/landmark/start/marine/charlie, +/obj/effect/landmark/late_join/charlie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"gkg" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"gkr" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"gkE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"gkK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"gll" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"gls" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/clipboard, +/obj/item/clipboard, +/obj/item/folder/black, +/obj/item/folder/black, +/obj/item/folder/white, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"glB" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"glG" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/shipboard/brig/medical) +"glH" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"glP" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"gmb" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "Storage"; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"gmj" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"gms" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"gnu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"gnv" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"gnG" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_p) +"gnK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"gnM" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"goj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"gol" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"goo" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"goy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"goL" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"goM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"goY" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) +"gpc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"gpi" = ( +/obj/structure/dropship_equipment/paradrop_system, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"gpp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"gpI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gpO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"gpT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"gpW" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs1"; + name = "ARES Reception Shutters"; + pixel_y = 24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"gpY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/lifeboat_pumps/north1) +"gqt" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"gqx" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"gqz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"gqH" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/hallways/upper/midship_hallway) +"gqI" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/midship_hallway) +"gqP" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"gqQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"gre" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/upper/fore_hallway) +"grv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"grG" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/navigation) +"grJ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"grR" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/living/briefing) +"grT" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gsd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = 7 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -6 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"gsg" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "Alpha_1"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"gsi" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"gsm" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"gsp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"gsy" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"gsC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"gsJ" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/midship_hallway) +"gsM" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"gsZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2; + pixel_y = -21 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"gtg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"gtp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"gtD" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gtH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"gtI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"gtQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"gtU" = ( +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 17 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"guo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"guK" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"guP" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/maint/upper/u_a_s) +"guS" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"guW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/sign/prop3{ + pixel_x = 28 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/clothing/mask/gas{ + pixel_y = 7 + }, +/obj/item/clothing/mask/gas{ + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"gvq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"gvu" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"gvK" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"gvU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"gwh" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"gwj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"gwn" = ( +/obj/structure/machinery/ares/processor/bioscan, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gwo" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/living/basketball) +"gww" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"gwM" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/item/storage/pill_bottle/tramadol/skillless{ + layer = 2.9; + pill_type_to_fill = null; + pixel_y = 14 + }, +/obj/structure/machinery/door_control{ + id = "Delta_1"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"gwR" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"gxh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"gxk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"gxm" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/stairs) +"gxn" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"gxt" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Warden's Office" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"gxI" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/s_bow) +"gxO" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/gym) +"gxP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"gxU" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"gyh" = ( +/obj/structure/machinery/cm_vending/gear/executive_officer{ + density = 0; + pixel_y = 30 + }, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"gym" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/mp_bunks) +"gyn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gyw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"gyE" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"gyH" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gyI" = ( +/obj/structure/machinery/computer/skills{ + req_one_access_txt = "200" + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/pen/clicky{ + pixel_x = 14; + plane = -5; + pixel_y = 2 + }, +/obj/item/tool/pen/clicky{ + pixel_x = 14; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"gyN" = ( +/obj/structure/machinery/prop{ + desc = "It's a server box..."; + icon_state = "comm_server"; + name = "server box" + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gyO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/ce_room) +"gyU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"gzq" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"gzw" = ( +/obj/structure/closet/hydrant{ + pixel_x = 30 + }, +/obj/item/reagent_container/hypospray/autoinjector/skillless, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"gzI" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "pobunk1"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/living/pilotbunks) +"gzJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/morgue) +"gzK" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"gzM" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"gzN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gzV" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gAj" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"gAk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"gAl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"gAz" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/golden_cup{ + desc = "A golden cup, won in the championship final against the USS Sulaco ca. 2172"; + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"gAA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha_bravo_shared) +"gAO" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"gAP" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet, +/obj/item/clothing/head/bearpelt, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"gAS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"gBc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"gBd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"gBo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"gBs" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"gBU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/trash{ + pixel_x = -3 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gBW" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"gCf" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"gCu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"gCw" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"gCB" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"gCP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"gDh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Security Vault"; + req_access = null; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore{ + plane = -6 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gDk" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"gDp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"gDt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/crew/alt{ + dir = 4 + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Brig Cells Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Cells"; + pixel_x = 16 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) +"gDH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"gDW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"gDX" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"gEg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"gEh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"gEo" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"gEv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"gEC" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"gFa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"gFd" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes{ + pixel_y = 9 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"gFP" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/stern_point_defense) +"gFR" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/gear/commanding_officer, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"gGf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"gGr" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"gGs" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -13; + pixel_y = -13 + }, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/obj/item/tool/wirecutters{ + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/bed{ + can_buckle = 0; + desc = "A lightweight support lattice."; + icon = 'icons/obj/structures/structures.dmi'; + icon_state = "latticefull"; + layer = 2.1; + name = "lattice" + }, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"gGw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) +"gGx" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -16 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"gGI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"gGJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"gHh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"gHi" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"gHj" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/fridge/groceries/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"gHl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"gHo" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"gHt" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"gHZ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"gIh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + damage_cap = 50000; + name = "\improper Chief Engineer's Bunk"; + no_panel = 1; + req_access = list(); + req_one_access_txt = "1;6" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) +"gIm" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"gIz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"gIB" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"gII" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"gIJ" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"gIO" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/interrogation) +"gIU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/tapes{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/tapes{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/tapes{ + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"gJf" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"gJg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"gJp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"gJC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"gJE" = ( +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = 24; + pixel_y = 12; + req_access_txt = "3" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/interrogation) +"gJF" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_stern) +"gJO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/southleft{ + desc = "A window, that is also a door. A windoor if you will. This one is stronger."; + health = 500; + name = "Reinforced Glass door"; + req_one_access_txt = "2;35" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"gJP" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"gKd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"gKo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"gKv" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"gKw" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"gKB" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"gKF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"gKK" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/lower/repair_bay) +"gKR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" + }, +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"gKZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"gLc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"gLl" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_f_s) +"gLm" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"gLz" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"gLD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"gLG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"gLN" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"gLZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_2"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"gMd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"gMk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gMN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + explo_proof = 1; + name = "ARES Chamber Lockdown"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4.1; + density = 0; + dir = 2; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + pixel_x = -1; + pixel_y = -1; + unacidable = 0; + unslashable = 0 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"gMS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"gMU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/east, +/area/almayer/living/briefing) +"gNg" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"gNo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"gNp" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"gNq" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"gNy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"gNI" = ( +/turf/open/floor/almayer/orange, +/area/almayer/maint/upper/u_a_s) +"gNN" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"gNO" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"gNZ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"gOa" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"gOk" = ( +/obj/structure/largecrate/guns/merc{ + name = "\improper dodgy crate" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gOC" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"gOR" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"gOS" = ( +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"gPc" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"gPA" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/midship_hallway) +"gPS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"gPU" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"gQk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/obj/structure/machinery/faxmachine/corporate/liaison, +/obj/item/paper/liaison_brief{ + pixel_y = 8; + pixel_x = -4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"gQF" = ( +/obj/structure/bed/chair/comfy{ + buckling_y = 2; + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"gQO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"gQQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"gRc" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"gRJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/port_umbilical) +"gRP" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"gRS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"gSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"gSj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/engineering/port_atmos) +"gSk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"gSy" = ( +/obj/item/frame/rack{ + layer = 3.1; + pixel_y = 19 + }, +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = 5 + }, +/obj/item/tool/weldpack{ + pixel_x = -2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"gSz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"gSH" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"gST" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"gTk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"gTH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/skills{ + dir = 4; + pixel_y = 18 + }, +/obj/structure/machinery/computer/secure_data{ + dir = 4 + }, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 4; + pixel_y = -18 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"gTK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"gUf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"gUg" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"gUi" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"gUn" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"gUu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"gUG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"gUL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"gUS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"gUV" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/command/lifeboat) +"gUX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"gVq" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/containment) +"gVu" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/item/reagent_container/food/snacks/grown/banana{ + pixel_x = 18; + pixel_y = 5 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"gVA" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 8; + id = "almayerlink_OT1_req" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"gVF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"gVW" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/safety/reduction{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"gWm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"gWt" = ( +/obj/structure/surface/table/almayer, +/obj/item/pipe{ + dir = 9 + }, +/obj/item/tool/screwdriver{ + layer = 3.6; + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/tool/crowbar/red{ + pixel_x = 17 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"gWu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"gWE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/marine/spec/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"gWG" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/medical/upper_medical) +"gXl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/upper_medical) +"gXs" = ( +/obj/effect/step_trigger/ares_alert/terminals, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES Operations Right"; + name = "\improper ARES Operations Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"gXx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"gXB" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"gYe" = ( +/obj/structure/machinery/vending/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"gYg" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 + }, +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"gYl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"gYp" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/maint/upper/u_m_p) +"gYt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"gYx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"gYU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"gYW" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"gZw" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"gZz" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/living/briefing) +"gZK" = ( +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"gZP" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D4"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"gZW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/port_fore_hallway) +"had" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"hal" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"ham" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"haz" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"haB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"haD" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower) +"haO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"haQ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/marine, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"haR" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"haY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"hbl" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_s) +"hbp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_stern) +"hbs" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower) +"hbu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"hbA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"hbE" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hbI" = ( +/obj/structure/closet/secure_closet/CMO, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"hcf" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/structure/barricade/handrail{ + dir = 4; + layer = 3.3; + pixel_y = 3 + }, +/obj/structure/barricade/handrail{ + dir = 8; + layer = 3.3; + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/engineering/port_atmos) +"hcw" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/item/explosive/grenade/high_explosive/training, +/obj/structure/machinery/door_control{ + id = "Firing_Range_1"; + name = "range shutters"; + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"hcI" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"hcX" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"hdd" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/starboard_missiles) +"hds" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/offices) +"hdy" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hdE" = ( +/obj/structure/filingcabinet, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_y = 14 + }, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"hdP" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/aft_hallway) +"hdQ" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Execution Firearms" + }, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_box/magazine/m4ra, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"hdV" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/lower/port_midship_hallway) +"hec" = ( +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"heo" = ( +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper + }, +/obj/structure/sign/safety/rewire{ + pixel_x = -15; + pixel_y = 25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"heK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"heO" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"heS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"hfa" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"hfb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"hft" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"hfv" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"hfy" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"hfO" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full{ + pixel_y = 8 + }, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/suit/storage/hazardvest/black, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"hfQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hgg" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"hgk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hgo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower) +"hgp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"hgs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hgB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/intel, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/computerlab) +"hgD" = ( +/obj/structure/reagent_dispensers/fueltank/gas/hydrogen{ + anchored = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"hgL" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"hgZ" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "or3privacyshutter"; + name = "Privacy Shutters"; + pixel_y = -25 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"hhd" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -9; + pixel_y = 16 + }, +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"hhg" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hhn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"hhA" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"hif" = ( +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hii" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"hiu" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hiy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"hiM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"hiP" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hji" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"hjk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"hjs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"hjA" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/port_missiles) +"hjB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Kitchen"; + req_one_access_txt = "30;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"hjM" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"hjQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hjT" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/largecrate, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hki" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"hkz" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"hkB" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"hkC" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hkG" = ( +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"hkH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 16; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = 16; + pixel_y = 8; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"hkX" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -7; + pixel_y = 20 + }, +/obj/item/ashtray/bronze{ + pixel_x = 4; + pixel_y = 19 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/map_item{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.04; + pixel_x = 5; + pixel_y = 22 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hlj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"hlH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"hlI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/transmitter/rotary{ + name = "Brig Wardens's Office Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig Warden's Office"; + pixel_x = 15 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/warden_office) +"hlT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"hlU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"hme" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/hydroponics) +"hmj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"hmn" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"hmv" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"hmy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hmA" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/p_bow) +"hmC" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hmF" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/sign/poster{ + pixel_x = -32 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"hmS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"hmV" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "medical manuals bookcase"; + opacity = 0 + }, +/obj/item/book/manual/surgery, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hmZ" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"hng" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/item/clothing/accessory/storage/black_vest/acid_harness, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"hnt" = ( +/obj/item/toy/deck{ + pixel_y = 12 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"hnE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/ids{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/device/flash, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"hnI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"hnP" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hoc" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"hoK" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"hoT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hoW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"hpk" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"hpN" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"hpS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "crate_room3"; + name = "\improper Storage Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"hpY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"hqb" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"hqc" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"hqh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/research/containment/entrance, +/area/almayer/medical/containment/cell) +"hqm" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hqp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hqu" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"hqW" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"hrm" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/shotgun, +/obj/structure/machinery/light, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"hrn" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + name = "\improper Research Reception Laboratory" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"hro" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"hrF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/starboard_point_defense) +"hrI" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"hsc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"hsg" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/door/window/ultra{ + dir = 8; + req_access_txt = "19" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"hsh" = ( +/obj/structure/coatrack, +/obj/structure/sign/poster/clf{ + pixel_x = -28 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hsj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"hsr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"hss" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"hsu" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"hsy" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/engine_core) +"hsK" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"hsW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"hte" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"htg" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"htk" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"htl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hto" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"htq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"htG" = ( +/obj/item/tool/soap, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"htL" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n150{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"huw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 8 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Dropship Remote Control Console" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"huD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"huK" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/cryo_cells) +"huO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/computerlab) +"huP" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"huU" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"hvd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/interrogation) +"hvv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/item/clipboard{ + base_pixel_x = 20; + pixel_x = 5 + }, +/obj/item/paper{ + pixel_x = 5 + }, +/obj/item/tool/pen{ + pixel_x = 5 + }, +/obj/structure/surface/table/reinforced/black, +/obj/structure/transmitter/rotary{ + name = "CIC Reception Telephone"; + phone_category = "Command"; + phone_id = "CIC Reception"; + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"hvw" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating, +/area/almayer/powered/agent) +"hvx" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"hvz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hvH" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hwB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"hwC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"hwH" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hxe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"hxm" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 4 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"hxG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"hxX" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"hxZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/spade{ + pixel_x = -4 + }, +/obj/item/tool/shovel/spade{ + pixel_x = 4 + }, +/obj/item/tool/shovel/spade, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_container/glass/bucket, +/obj/item/reagent_container/glass/watertank, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"hyb" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"hyk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"hyw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"hyE" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" + }, +/obj/effect/step_trigger/ares_alert/access_control, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"hyQ" = ( +/turf/closed/wall/almayer, +/area/almayer/living/synthcloset) +"hyT" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/obj/structure/sign/safety/north{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"hyV" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 24 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/interrogation) +"hza" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"hzb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"hzc" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/notunnel) +"hzg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"hzs" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"hzu" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"hzG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"hzN" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"hzS" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"hAc" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/flare, +/obj/item/mortar_shell/flare, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"hAf" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"hAh" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/port_umbilical) +"hAz" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"hAA" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"hAG" = ( +/obj/structure/closet/crate/internals, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/blue, +/obj/item/restraint/adjustable/cable/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"hAU" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"hAZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"hBc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"hBr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"hBz" = ( +/obj/item/mortar_kit, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"hBF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"hBG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"hBL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"hBW" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"hCf" = ( +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"hCk" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"hCq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hCt" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"hCS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/obj/structure/sign/safety/med_cryo{ + pixel_x = 32 + }, +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, +/obj/item/weapon/pole/wooden_cane, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"hCV" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"hCY" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"hDw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"hDx" = ( +/obj/effect/landmark/start/marine/tl/delta, +/obj/effect/landmark/late_join/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"hDR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/syringe_case{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/syringe_case, +/obj/item/storage/syringe_case{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"hDU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/lower/port_fore_hallway) +"hDV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"hDX" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"hEb" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"hEg" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"hEl" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"hEm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"hEr" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"hEw" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"hEV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"hFw" = ( +/obj/structure/machinery/disposal/broken, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"hFC" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"hFF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/solid{ + dir = 1; + name = "Morgue Processing" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"hGb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"hGh" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/chemistry) +"hGG" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"hGN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 16 + }, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"hGO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/briefing) +"hGV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"hHe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"hHl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/pouch/general/large, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"hIp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hIs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"hIF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"hIG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"hII" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/squads/delta) +"hIX" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"hJg" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4; + name = "Gas mixer N2/O2" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"hJD" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"hJI" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"hKe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hKl" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"hKO" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"hLr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_s"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"hLu" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"hLC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"hLI" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"hLS" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"hMi" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"hMk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hMG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"hMM" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"hMN" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_three) +"hMX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"hNh" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hNv" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"hNw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/charlie) +"hNB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/vehiclehangar) +"hNM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/sheet/metal{ + layer = 2.9; + pixel_y = 6 + }, +/obj/item/tool/shovel/etool/folded, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"hNP" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"hNY" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"hOd" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"hOn" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/hallways/upper/midship_hallway) +"hOu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"hOV" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/constr) +"hPe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"hPh" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/silver/north, +/area/almayer/living/auxiliary_officer_office) +"hPo" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"hPu" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"hPD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"hPI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/perma) +"hPL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"hPN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/hydroponics) +"hPZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"hQc" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"hQf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"hQw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) +"hQK" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) +"hQP" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"hQU" = ( +/obj/structure/morgue, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/morgue) +"hQW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"hQY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"hRa" = ( +/obj/structure/machinery/vending/snack{ + pixel_x = -7 + }, +/obj/structure/machinery/vending/coffee{ + pixel_x = 14 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"hRd" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"hRk" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"hRu" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/execution_storage) +"hRA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"hRW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 38 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/machinery/computer/crew/alt{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"hSb" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hSk" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"hSo" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"hSt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"hSv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"hSw" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"hSI" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/morgue) +"hSV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"hTc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"hTf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"hTl" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + desc = "A powerful server tower housing various AI functions."; + name = "server tower"; + pixel_y = 16 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"hTt" = ( +/obj/structure/machinery/brig_cell/cell_1{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"hTF" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm{ + isopen = 1; + starting_helmet_type = null; + starting_mask_type = null; + starting_suit_type = null; + starting_tank_type = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"hTP" = ( +/obj/structure/machinery/door_control{ + id = "crate_room2"; + name = "storage shutters"; + pixel_y = 26 + }, +/obj/structure/machinery/recharge_station{ + desc = "Where the cargo department's Working Joe used to charge before it tragically fell into the ASRS elevator three years ago. The replacement still hasn't arrived."; + name = "Working Joe charging station" + }, +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 36 + }, +/obj/item/frame/light_fixture/small{ + pixel_y = 17 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"hTT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/item/device/analyzer/plant_analyzer, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"hTU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hUb" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"hUh" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"hUk" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/lower/engine_core) +"hUu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"hUz" = ( +/obj/structure/largecrate/supply/supplies/mre{ + desc = "A supply crate containing everything you need to stop a CLF uprising."; + name = "\improper USCM crate 'FOB supplies'" + }, +/obj/item/folded_tent/big{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"hUU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = -12 + }, +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"hUW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"hVf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"hVz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"hVL" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"hWa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"hWr" = ( +/obj/effect/landmark/start/marine/smartgunner/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"hWs" = ( +/obj/structure/machinery/flasher_button{ + id = "briefing_flash"; + name = "Briefing Flasher"; + pixel_x = 32; + pixel_y = 27; + req_access_txt = "19" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"hWB" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"hWD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"hWH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"hWJ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"hWM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"hWO" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) +"hXb" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"hXd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/storage/box/wy_mre{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"hXg" = ( +/obj/vehicle/powerloader, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"hXm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"hXD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"hXG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"hXX" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/port) +"hXY" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"hYf" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"hYj" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"hYn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"hYo" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"hYE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"hYG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"hZe" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_engi"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"hZj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"hZw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"hZE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"hZJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"hZN" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"hZZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"iaa" = ( +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"iag" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"iah" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"iaj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"ial" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"iaq" = ( +/obj/structure/machinery/vending/cola, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"iat" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"iav" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering) +"iaF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"iaK" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"iaO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"iaR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"ibc" = ( +/obj/structure/machinery/conveyor_switch{ + id = "req_belt" + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"ibf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"ibP" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"icp" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"icw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"icM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"icQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/fore_hallway) +"icZ" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"idx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"idL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"idX" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"ied" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"ien" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ieu" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/stack/sheet/metal{ + layer = 4.1; + pixel_x = -3; + pixel_y = 14 + }, +/obj/item/tool/weldingtool{ + layer = 4.1; + pixel_x = 5; + pixel_y = 12 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/red{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"iey" = ( +/obj/structure/surface/table/almayer, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_lobby) +"ieH" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"ieX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ifb" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"iff" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"ifz" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = 25 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"igb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"igr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"igs" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"igw" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"igS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"iho" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"ihw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"ihI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"ihM" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ihW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ihX" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"ihY" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"iit" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"iiU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/fore_hallway) +"iiZ" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"ijd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"ijf" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/crap, +/obj/item/tool/crowbar, +/obj/structure/machinery/cell_charger, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"ijr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"ijQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "SEA Office Shutters"; + name = "SEA Office Shutters"; + pixel_y = 12 + }, +/obj/item/ashtray/plastic{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/structure/transmitter/rotary{ + name = "Senior Enlisted Advisor Office Telephone"; + phone_category = "Offices"; + phone_id = "Senior Enlisted Advisor's Office"; + pixel_x = -3 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"ikl" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/vehiclehangar) +"iks" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"ikv" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"ikA" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"ikQ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/stamp/hop{ + name = "Commanding Officer's rubber stamp"; + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/paper_bin/uscm{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/tool/pen/blue/clicky{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ikT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ilq" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"ily" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"ilG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/prop/almayer/hangar_stencil{ + icon_state = "dropship2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ilJ" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"iml" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"imo" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"imp" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/medical/morgue) +"imt" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"imy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"imS" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsUpper"; + name = "\improper ARES Core Shutters"; + plane = -7 + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 2; + id = "ares_vault_in"; + name = "aicore" + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"inh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"ins" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"inw" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"inL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"ios" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"iow" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_y_offset = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"ioH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"ioM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"ioP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"ioU" = ( +/turf/closed/wall/almayer, +/area/almayer/command/securestorage) +"ioV" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"ipa" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"ipe" = ( +/obj/item/toy/crayon{ + name = "chewed crayon"; + pixel_y = 20; + uses = 1 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"ipk" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"ipn" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ipB" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"ipE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"ipK" = ( +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"ipM" = ( +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"ipQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/item/storage/fancy/vials/empty, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -29 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"iqd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"iqo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"iqp" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "37" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"iqH" = ( +/obj/item/trash/chips{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/trash/cheesie, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"iqR" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = -16 + }, +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"irr" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"irJ" = ( +/obj/item/tool/wirecutters{ + pixel_y = -7 + }, +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"irS" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/south1) +"irT" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"irU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"isa" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"ish" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"iso" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/upper/midship_hallway) +"isq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"isI" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"isN" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/morgue) +"itg" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ito" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"itR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"itX" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"iub" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"iuf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"iun" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"iup" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"iur" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/cichallway) +"iuz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"iuE" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"iuG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"iuI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ivf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/camera, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"ivg" = ( +/obj/structure/janitorialcart, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/hallways/hangar) +"ivs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"ivu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"ivz" = ( +/obj/structure/closet, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"ivM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ivS" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"iwf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"iwm" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"iwB" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/obj/structure/sign/safety/waterhazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"iwI" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Storage"; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"iwJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/entrance/west, +/area/almayer/medical/containment/cell) +"iwV" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/armory) +"iwW" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"iwZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/northwest, +/area/almayer/squads/req) +"ixj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"ixu" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"ixv" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"ixD" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ixL" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"ixN" = ( +/obj/structure/largecrate, +/obj/item/folded_tent/reqs{ + pixel_x = -3; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"ixQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"ixT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"iyf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"iyC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"iyE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"iyF" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"iyS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"iyY" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"izf" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "ares_vault_out"; + name = "aicore" + }, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"izk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"izY" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"iAg" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/mp_bunks) +"iAw" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"iAz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"iAE" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"iAI" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"iBl" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/sign/safety/rewire{ + pixel_x = 7; + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"iBn" = ( +/turf/closed/wall/almayer/aicore/white/hull, +/area/space) +"iBu" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"iBY" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"iCg" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/upper/midship_hallway) +"iCu" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"iCD" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"iCF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"iCT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"iDa" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer/red/southwest, +/area/almayer/maint/upper/u_a_p) +"iDf" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"iDk" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"iDs" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iDK" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"iEa" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"iEg" = ( +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/auxiliary_officer_office) +"iEn" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"iEr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"iEw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"iEx" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"iEz" = ( +/obj/structure/machinery/light, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"iEM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iFc" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"iFn" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"iFp" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iFA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Railguns and Viewing Room" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"iFC" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"iFD" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"iFH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"iFK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"iFM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"iFY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"iGc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"iGi" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"iGn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"iGA" = ( +/obj/structure/bed/sofa/south/white/left, +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"iHc" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"iHG" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cells) +"iIb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_m_p) +"iIl" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"iIo" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"iIO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"iIP" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"iIR" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"iIU" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"iJs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"iJB" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"iJS" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"iJT" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"iKb" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"iKc" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"iKf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"iKw" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"iKy" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"iKD" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/flash, +/obj/item/device/binoculars, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"iKI" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/starboard_missiles) +"iKK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"iKM" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) +"iKZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"iLf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/disk_reader, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"iLh" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"iLm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iLq" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"iLs" = ( +/obj/structure/ladder{ + height = 1; + id = "med2" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/lower_medical_lobby) +"iLG" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"iLL" = ( +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"iLO" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"iMm" = ( +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"iMr" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"iMD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"iMI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"iNh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Brig Cells" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"iNk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"iNH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/redcorner/east, +/area/almayer/hallways/lower/port_fore_hallway) +"iNR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"iNY" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"iOo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"iOD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"iOX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"iPf" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"iPq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"iPt" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/starboard_midship_hallway) +"iPv" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 8 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/living/briefing) +"iPD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"iPH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"iPN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/upper/mess) +"iPS" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"iQd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"iQi" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"iQj" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge4" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"iQt" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = -30; + pixel_y = 6; + serial_number = 12 + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"iQB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/card{ + dir = 4; + layer = 3.2; + pixel_y = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + layer = 2.99; + pixel_y = 23 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"iQJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"iRp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/interrogation) +"iRy" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"iRN" = ( +/obj/structure/machinery/light/containment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"iSd" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"iSm" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + desc = "Do you remember who you are?"; + icon_state = "mirror_broke"; + name = "broken mirror"; + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/item/device/cassette_tape/nam{ + layer = 2.9; + pixel_x = -6; + pixel_y = 11 + }, +/obj/structure/machinery/door_control{ + id = "Delta_2"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/item/prop{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 29 + }, +/obj/item/prop{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -1; + pixel_y = 24 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"iSx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/midship_hallway) +"iSV" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"iSZ" = ( +/obj/effect/landmark/start/marine/engineer/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"iTd" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"iTe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"iTl" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) +"iTq" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"iTt" = ( +/obj/structure/largecrate/supply/medicine/medivend{ + pixel_x = 3 + }, +/obj/structure/largecrate/random/mini/med{ + density = 1; + pixel_x = 3; + pixel_y = 11 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"iTw" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"iTD" = ( +/obj/effect/landmark/start/auxiliary_officer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/bridgebunks) +"iTI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"iTQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"iTW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_n"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"iUh" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"iUk" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"iUm" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"iUo" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = -25 + }, +/obj/structure/surface/rack, +/obj/item/storage/box/autoinjectors{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/storage/box/beakers{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/storage/box/sprays{ + pixel_y = -3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"iUG" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/shipboard/brig/medical) +"iUJ" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"iUW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/tool/crowbar/red, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"iUX" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/interrogation) +"iVy" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"iVz" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"iVD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_n"; + dir = 1; + name = "\improper Brig" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"iVE" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"iVG" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"iVP" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/processing) +"iWa" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"iWc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"iWn" = ( +/obj/item/paper/almayer_storage, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"iWx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"iWB" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"iWH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/structure/janitorialcart, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"iWJ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"iWQ" = ( +/obj/effect/landmark/start/researcher, +/obj/effect/landmark/late_join/researcher, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"iWR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"iXb" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"iXm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"iXA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"iXB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"iXT" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"iXU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_y = 3 + }, +/obj/item/book/manual/evaguide, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"iXV" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) +"iXW" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"iYe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"iYf" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"iYm" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"iYt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"iYv" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"iYx" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"iZd" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"iZg" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"iZE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"iZU" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"iZV" = ( +/obj/structure/machinery/door_control/cl/quarter/officedoor{ + pixel_x = 25 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jac" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"jaf" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -27; + serial_number = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jao" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"jas" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"jay" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"jaz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"jaI" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"jaM" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"jaR" = ( +/obj/structure/largecrate/random/mini/small_case/b{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/trash/crushed_cup{ + pixel_y = 12 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"jbq" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/command/lifeboat) +"jbt" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"jbH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"jbK" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"jbN" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/door_control/brbutton{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown"; + pixel_x = -12; + pixel_y = 26 + }, +/obj/structure/machinery/door_control/brbutton{ + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown Override"; + pixel_x = -2; + pixel_y = 26 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4 + }, +/obj/structure/machinery/aicore_lockdown{ + icon_state = "big_red_button_wallv"; + pixel_x = 8; + pixel_y = 26 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"jbX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"jcf" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"jcj" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_y = -3; + pixel_x = 4; + plane = -5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4; + pixel_y = -3; + plane = -5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"jcu" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/fore_hallway) +"jcE" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jcP" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/engineering/upper_engineering/starboard) +"jdm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"jdn" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"jdu" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jdC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jdG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_three) +"jdZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"jeb" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/alpha_bravo_shared) +"jei" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"jeq" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/pillbottles{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"jer" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"jev" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/device/taperecorder{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jew" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"jez" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"jeO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"jeQ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/cryo_cells) +"jeR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"jfK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"jfS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"jfY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/folder/red, +/obj/structure/transmitter/rotary{ + name = "Brig CMP's Office Telephone"; + phone_category = "MP Dept."; + phone_id = "Brig CMP's Office"; + pixel_x = 15 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"jfZ" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"jge" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"jgg" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"jgk" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"jgl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"jgr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/paper_bin/uscm{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -8; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"jgw" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"jgJ" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/command/cichallway) +"jgK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"jgR" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = 32 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/mp_bunks) +"jhb" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = -6; + pixel_y = -6 + }, +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"jhc" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"jhn" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_four) +"jhs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"jht" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"jhx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"jhy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/offices) +"jhA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"jhD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"jhI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + layer = 2.99; + pixel_y = 19 + }, +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + layer = 2.99; + name = "brig cameras console"; + pixel_y = 5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"jhK" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"jhQ" = ( +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/beret/cm, +/obj/item/clothing/head/beret/cm, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"jhR" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"jhS" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jhW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"jic" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/lobby) +"jiM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"jiU" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"jjl" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jjS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/medical_science) +"jkj" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"jkl" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/morgue) +"jkq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"jks" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"jkz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/ids{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/box/handcuffs, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jkB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"jkD" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jkN" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"jkT" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"jlc" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"jlA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/containment) +"jlD" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"jlE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/deck/uno, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) +"jlG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/research/containment/entrance, +/area/almayer/medical/containment/cell) +"jlN" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -6 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 9 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"jlQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"jlT" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"jlX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"jmn" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/dirty{ + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"jmz" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jmK" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/cryo_cells) +"jmP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"jmQ" = ( +/obj/effect/landmark/start/maint, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"jmY" = ( +/turf/open/floor/almayer/blue, +/area/almayer/command/cichallway) +"jnc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"jne" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"jnh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"jno" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"jnp" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"jnD" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) +"jnI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"jnJ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"jnX" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/command/cic) +"joG" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 + }, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"joS" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"jpl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_n"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"jpn" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/port) +"jpp" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"jpt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"jpD" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" + }, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby2"; + name = "\improper RO Line 2" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"jpW" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jqP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 + }, +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"jqY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"jqZ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jre" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"jri" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"jrm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"jru" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = -32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"jrB" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"jrC" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"jrH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jrI" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"jrM" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"jrR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"jsa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"jsd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"jss" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/captain_mess) +"jsu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"jsw" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"jsx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"jsA" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"jsE" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"jsP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south1) +"jsR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"jtj" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"jts" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"jtU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"jtZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/hallways/lower/port_midship_hallway) +"juj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"juo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"juD" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"juS" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"jva" = ( +/obj/structure/closet, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -17 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"jvc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"jvp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"jvt" = ( +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"jvB" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"jvD" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_fore_hallway) +"jvM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jvP" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"jvX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"jvY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/telecomms) +"jwi" = ( +/obj/structure/machinery/door_control{ + id = "InnerShutter"; + name = "Inner Shutter"; + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"jwq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"jwr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"jwB" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"jwK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) +"jwP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"jxi" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"jxq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north2) +"jxu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"jxx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"jxB" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/plating, +/area/almayer/living/bridgebunks) +"jxX" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"jyb" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/processing) +"jyE" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"jyJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/ladder{ + height = 2; + id = "cicladder3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"jyR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"jyY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigmaint_s"; + dir = 1; + name = "\improper Brig Maintenance" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown_2"; + name = "\improper Perma Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"jzD" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"jzE" = ( +/obj/structure/closet/secure_closet/bar{ + name = "Success Cabinet"; + req_access_txt = "1" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"jzT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jAe" = ( +/obj/structure/surface/rack, +/obj/item/storage/beer_pack, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"jAj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/starboard_aft_hallway) +"jAt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/largecrate/random/case/double, +/obj/item/cell/crap{ + pixel_y = 14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jAB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"jAJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"jBy" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/morgue) +"jBO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 3"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 8 + }, +/area/almayer/medical/containment/cell) +"jCg" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"jCm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/item/tool/stamp/approved{ + pixel_x = -3; + pixel_y = -11 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"jCn" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"jCr" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"jCx" = ( +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"jCK" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"jCX" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"jDk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/transmitter{ + dir = 8; + name = "OT Telephone"; + phone_category = "Almayer"; + phone_id = "Ordnance Tech"; + pixel_x = 14 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"jDz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"jDO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jDP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper Spare Bomb Suit"; + req_one_access = null; + req_one_access_txt = "35" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"jEA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"jEM" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"jES" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"jEV" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -7 + }, +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/mp_bunks) +"jFf" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"jFt" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"jFx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"jFy" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/obj/item/tool/pen, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"jFE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"jFI" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"jFM" = ( +/obj/structure/surface/table/almayer, +/obj/item/attachable/lasersight, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ + pixel_x = 10; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"jFY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"jGn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"jGG" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"jGI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"jGQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"jGR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"jHh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"jHn" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"jHt" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/repair_bay) +"jHC" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"jHL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"jHQ" = ( +/obj/structure/machinery/crema_switch{ + pixel_x = -24; + req_access_txt = "25" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"jIs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"jIC" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/mess) +"jIJ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jIT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig/chief, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"jIV" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"jJk" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"jKn" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"jKF" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"jKI" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/port_atmos) +"jKK" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"jLg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_aft_hallway) +"jLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"jLs" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"jLH" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jLS" = ( +/obj/structure/bed/chair/comfy/charlie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jMa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"jMm" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/mask/rebreather/scarf, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"jMr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box{ + pixel_y = 4 + }, +/obj/structure/sign/safety/security{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"jMx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 11; + pixel_y = -26 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"jMy" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jMG" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"jML" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"jMQ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"jNc" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 3"; + locked = 1; + name = "\improper Containment Cell 3"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 3"; + name = "\improper Containment Cell 3" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"jNo" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"jNw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/port_fore_hallway) +"jND" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"jNG" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jNK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"jNT" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution) +"jOi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/squads/bravo) +"jOk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/line_nexter_control{ + id = "line2"; + pixel_x = -4; + pixel_y = 10; + req_one_access_txt = "1;21" + }, +/obj/structure/machinery/door_control{ + id = "ROlobby2"; + name = "RO Line 2 Shutters"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "1;21" + }, +/obj/item/paper_bin/uscm{ + pixel_y = -4 + }, +/obj/item/tool/pen{ + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"jOo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"jOq" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"jOt" = ( +/obj/item/trash/barcardine, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jOx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"jOD" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"jOE" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"jOG" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"jPd" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"jPq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"jPu" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"jPx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jPP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"jPS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/chief_mp_office) +"jPU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"jQt" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"jRc" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jRp" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/toy/deck{ + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jRz" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "tele_ground1"; + teleport_x = 180; + teleport_x_offset = 200; + teleport_y = 50; + teleport_y_offset = 80; + teleport_z = 1; + teleport_z_offset = 1 + }, +/turf/closed/wall/almayer/outer, +/area/space) +"jRC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"jRH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"jRK" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"jRO" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"jSc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/cm_vending/gear/staff_officer_armory, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"jSo" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"jSp" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/squads/charlie) +"jSw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"jSy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"jSU" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"jTj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/structure/machinery/computer/cameras/containment{ + dir = 8; + name = "Research Cameras"; + pixel_y = 10 + }, +/obj/structure/machinery/computer/research/main_terminal{ + dir = 8; + pixel_y = -3 + }, +/obj/structure/machinery/door_control{ + id = "CMO Shutters"; + name = "Office Shutters"; + req_access_txt = "5"; + pixel_x = -11; + pixel_y = -6 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"jTt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jTB" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower) +"jTH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jTI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) +"jTU" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"jUb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"jUh" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"jUl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jUq" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"jUx" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"jUF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"jUM" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"jUV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"jUY" = ( +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"jVa" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"jVg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"jVr" = ( +/obj/structure/machinery/cm_vending/clothing/marine/alpha{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"jVt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner3, +/area/almayer/medical/containment/cell) +"jVE" = ( +/turf/open/floor/almayer/test_floor5, +/area/almayer/command/computerlab) +"jWb" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"jWh" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering/port) +"jWr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"jWu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"jXc" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/starboard_hallway) +"jXd" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"jXf" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"jXk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/weapons/m39{ + pixel_x = 2 + }, +/obj/structure/largecrate/supply/weapons/m41a{ + layer = 3.1; + pixel_x = 6; + pixel_y = 17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"jXN" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"jXR" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"jYa" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"jYc" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 4.1; + name = "Sergeant Huggs"; + pixel_y = 15; + throwforce = 15 + }, +/obj/item/clothing/head/cmcap{ + layer = 4.1; + pixel_x = -1; + pixel_y = 22 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"jYm" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"jYH" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/mob/living/silicon/decoy/ship_ai{ + layer = 2.98; + pixel_y = -16 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"jYM" = ( +/obj/structure/ladder{ + height = 1; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/p_bow) +"jZd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"jZe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"jZo" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"jZs" = ( +/obj/structure/machinery/light/containment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"jZu" = ( +/obj/structure/machinery/door_control{ + id = "CIC_Conference"; + name = "Conference Lockdown"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"jZv" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"jZC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"jZU" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/medical/containment/cell/cl) +"jZY" = ( +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/upper_medical) +"kac" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"kaj" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"kak" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"kam" = ( +/obj/item/tool/screwdriver{ + layer = 2.9; + pixel_x = -21; + pixel_y = -14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"kan" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/lower_medical_medbay) +"kaq" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kaB" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/squads/alpha) +"kaE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/upper/midship_hallway) +"kaI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"kaO" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"kaQ" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/starboard_hallway) +"kaS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"kbc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 8 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"kbl" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"kbn" = ( +/obj/structure/flora/bush/ausbushes/grassybush, +/turf/open/gm/grass/grass1, +/area/almayer/medical/upper_medical) +"kbv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"kbw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"kbx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"kbJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/containment) +"kbX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer/brig, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"kcg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"kcl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/bravo) +"kcp" = ( +/turf/closed/wall/almayer, +/area/almayer/living/auxiliary_officer_office) +"kcs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"kcx" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_n"; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"kcA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"kcG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"kcH" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/synthcloset) +"kcN" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/commandbunks) +"kde" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"kdi" = ( +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"kdn" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"kdo" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"kdv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"kdB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"keG" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation Observation" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/interrogation) +"keO" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"keR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"kfB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"kfE" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"kfI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"kfU" = ( +/turf/open/floor/plating, +/area/almayer/powered/agent) +"kgs" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_se_2"; + name = "\improper Research Window Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"kgt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kgD" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"kgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"kgV" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/upper/aft_hallway) +"khd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"khD" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"khE" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"khI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"kil" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/item/storage/belt/utility, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"kin" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"kio" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/closet, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"kiy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/lower/port_midship_hallway) +"kiG" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"kiM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"kiR" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"kiU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"kiV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"kiX" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kjk" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"kjw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"kjD" = ( +/obj/structure/machinery/computer/demo_sim{ + dir = 4; + pixel_x = -17; + pixel_y = 8 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"kjO" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/lower/engine_core) +"kjW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/port_midship_hallway) +"kjY" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"kkk" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"kkt" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"kkv" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/chief_mp_office) +"kkx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kkN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kkQ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"kkW" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes, +/obj/item/circuitboard/airalarm, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"kln" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"klH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"klT" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kmd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"kmp" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"kmE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"kmT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/upper/fore_hallway) +"knb" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"kng" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"knl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"knm" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"knq" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"knH" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 32 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_lobby) +"knK" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/gibs, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"knL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south2) +"knU" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/aft_hallway) +"kon" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"kow" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"kox" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ + dir = 4; + id = "civ_uniforms" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/living/gym) +"koB" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -27 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"koC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"koI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"kpf" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/structure/machinery/door_control/cl/office/window{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/machinery/door_control/cl/office/door{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/item/spacecash/c500{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/item/paper_bin/wy{ + pixel_x = 17; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"kph" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"kpj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"kpo" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kpL" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"kpQ" = ( +/obj/structure/machinery/door_control{ + id = "engidorm"; + pixel_x = 25; + pixel_y = 2 + }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"kqa" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"kqb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"kqd" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"kqm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"kqo" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"kqt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"kqv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"kqy" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/tool/pen, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"kqB" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"kqC" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"kqK" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"kqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) +"krp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"kry" = ( +/obj/structure/machinery/flasher{ + id = "Perma 1"; + pixel_y = 24 + }, +/obj/structure/machinery/camera/autoname/almayer/brig, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"krA" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"krG" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"krJ" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"krN" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"krO" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"krS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"krU" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/tool/screwdriver, +/obj/item/bananapeel{ + desc = "An experimental B8 Smart-Scope. Based on the technologies used in the Smart Gun by ARMAT, this sight has integrated IFF systems. It can only attach to the L42A Battle Rifle, M44 Combat Revolver, and M46C Pulse Rifle. This one appears to be covered in gun oil"; + icon = 'icons/obj/items/weapons/guns/attachments.dmi'; + icon_state = "iffbarrel"; + name = "Broken B8 Smart-Scope"; + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"krZ" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"ksg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"ksm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"ksp" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"ksw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) +"ksN" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/living/briefing) +"kti" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ktl" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ktQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow/west, +/area/almayer/command/airoom) +"ktR" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ktX" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/living/grunt_rnr) +"kui" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/machinery/vending/security/riot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"kuk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"kuu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"kuw" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/living/briefing) +"kuJ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"kuK" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"kvf" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"kvh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"kvL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/warden_office) +"kvU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"kwc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kwd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"kwg" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"kwi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kwo" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"kws" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"kwQ" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kxd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"kxe" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"kxo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"kxL" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"kxP" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/mp_bunks) +"kya" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"kyh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"kyr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/starboard) +"kyw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_s) +"kyN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"kyP" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_p) +"kyR" = ( +/obj/structure/safe/co_office, +/obj/item/weapon/pole/fancy_cane, +/obj/item/tool/lighter/zippo/gold{ + layer = 3.05; + pixel_y = 3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kyX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"kyY" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north1) +"kzb" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"kzc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"kzk" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/computerlab) +"kzr" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/firingrange{ + pixel_x = 32; + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"kzs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"kzy" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"kzC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"kzK" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"kzQ" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kAh" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"kAj" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"kAm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kAv" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"kAL" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"kBo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"kBy" = ( +/obj/structure/machinery/ares/processor, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"kBP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"kBY" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/tankerbunks) +"kCd" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/lower/vehiclehangar) +"kCi" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/port_missiles) +"kCj" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"kCl" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = 5; + pixel_y = -3 + }, +/obj/structure/noticeboard{ + desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"kCm" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"kCu" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"kCE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"kCY" = ( +/obj/structure/machinery/sleep_console{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"kDd" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"kDk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 6 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"kDH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"kDK" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kDR" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"kDY" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"kEc" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"kEg" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/toy/deck/uno{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kEp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/sign/safety/rewire{ + pixel_x = -20; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"kEq" = ( +/obj/structure/machinery/door/window/ultra{ + dir = 8; + req_access_txt = "3" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"kEs" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/prop/helmetgarb/helmet_nvg/cosmetic, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"kEA" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"kEE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"kEV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"kEW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"kFe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"kFs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kFv" = ( +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_medbay) +"kFO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "crate_room2"; + name = "\improper Storage Shutters" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"kFU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kFY" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 7 + }, +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"kGi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"kGu" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"kGw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"kGA" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kGF" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"kGQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"kGS" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"kHd" = ( +/obj/structure/machinery/computer/arcade, +/obj/item/prop/helmetgarb/spacejam_tickets{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"kHo" = ( +/obj/item/device/camera{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/camera_film, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"kHS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"kHY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"kIf" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"kIk" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"kIl" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kIP" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"kJc" = ( +/obj/structure/ladder{ + height = 1; + id = "ForeStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/s_bow) +"kJh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kJi" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 14; + pixel_y = 20 + }, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"kJm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kJH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/freezer/industry, +/obj/item/reagent_container/glass/beaker/silver, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"kJW" = ( +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/shower{ + dir = 8; + layer = 3.10; + plane = -4 + }, +/obj/item/tool/soap{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/commandbunks) +"kJZ" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"kKk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"kKB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"kKR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"kKY" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kLc" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;7" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"kLk" = ( +/obj/structure/machinery/cm_vending/clothing/tl/bravo{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"kLm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"kLE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"kLP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/greencorner/west, +/area/almayer/squads/req) +"kMp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"kMr" = ( +/obj/item/trash/uscm_mre, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"kMH" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 1"; + name = "Cell 1" + }, +/obj/structure/sign/safety/one{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"kMK" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/port) +"kMR" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"kMV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"kMW" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"kNf" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"kNk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"kNl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"kNq" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"kNC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"kNF" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) +"kNO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -9; + pixel_y = 4 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"kNV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/starboard) +"kNX" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"kNY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"kOv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"kOB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = -6 + }, +/obj/item/tool/pen/blue{ + pixel_x = -6 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"kOH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"kOJ" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"kOR" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"kOW" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"kPa" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/hallways/upper/fore_hallway) +"kPx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/mass_spectrometer, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/dropper, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/obj/item/reagent_container/glass/beaker/cryoxadone, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/chemistry) +"kPB" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"kPG" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"kPH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"kPJ" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"kPR" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = -17 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"kPZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"kQr" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/item/tool/lighter/random{ + pixel_x = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"kQu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"kRd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) +"kRg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"kRD" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"kRP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/prop/magazine/dirty/torn, +/obj/item/prop/magazine/dirty/torn/alt{ + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"kRQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17; + pixel_y = 7 + }, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 8; + pixel_x = 17; + pixel_y = -6 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"kSi" = ( +/obj/structure/machinery/cm_vending/gear/intelligence_officer{ + density = 0; + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"kSn" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"kSv" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/hangar) +"kSy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Right"; + name = "ARES Mainframe Lockdown"; + pixel_x = -24; + pixel_y = 24; + req_one_access_txt = "200;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"kSA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"kSC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"kSH" = ( +/obj/structure/sign/prop1{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/security{ + pixel_x = -8 + }, +/obj/structure/filingcabinet/medical{ + pixel_x = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kSU" = ( +/obj/structure/transmitter/no_dnd{ + name = "Requisition Telephone"; + phone_category = "Almayer"; + phone_id = "Requisition"; + pixel_y = 30 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"kTp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/medical) +"kTv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"kTN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/ce_room) +"kTY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"kUg" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"kUh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ + access_modified = 1; + dir = 1; + name = "\improper Flight Crew Quarters"; + req_one_access_txt = "19;22" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"kUo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"kUA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"kUI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kUJ" = ( +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"kUL" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"kUR" = ( +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"kUV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"kVV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"kVW" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"kVZ" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 2"; + name = "Cell 2" + }, +/obj/structure/sign/safety/two{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"kWk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/greencorner, +/area/almayer/squads/req) +"kWq" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/cichallway) +"kWI" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"kWN" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_x = -27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"kWR" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/transmitter/rotary{ + name = "Commanding Officer's Office"; + phone_category = "Offices"; + phone_id = "Commanding Officer's Office"; + pixel_x = 16; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"kWT" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/living/pilotbunks) +"kXa" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"kXf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"kXm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = -7 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"kXt" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"kXu" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"kXw" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"kXN" = ( +/obj/item/clothing/glasses/sunglasses/aviator{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"kYb" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"kYl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"kYt" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/bible{ + desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; + name = "Holy Bible"; + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/prop/helmetgarb/rosary{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kYv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"kYF" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_s) +"kYL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"kYU" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"kYV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"kZc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"kZN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/auxiliary_officer_office) +"kZV" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"lab" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"lah" = ( +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/living/gym) +"lat" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"laD" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"laI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"laM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"laO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"laQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Engineering Reception" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"laU" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Firing_Range_1"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"laV" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/command/cic) +"lbf" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"lbs" = ( +/obj/structure/sign/safety/biolab{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"lbB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"lbO" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"lbX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lcg" = ( +/obj/structure/machinery/ares/substrate, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"lcy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"lcV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"lcW" = ( +/obj/item/storage/donut_box{ + pixel_y = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"ldb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ldc" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/workshop) +"lde" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"ldl" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ldt" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ldC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"ldF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"ldW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"lea" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/hydroponics) +"lef" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"leg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"let" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"ley" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"leM" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"leT" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"leU" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"leY" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"lft" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"lfx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lfz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"lfH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"lfZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/meal5, +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"lgf" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"lgk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"lgt" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"lgy" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Firing_Range_2"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"lgC" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/living/briefing) +"lgF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lhj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"lhs" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"lht" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"lhv" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/upper_medical) +"lhB" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/grunt_rnr) +"lhJ" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 12; + pixel_y = 25 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"lhX" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"lia" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"lib" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"lid" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"liJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"liY" = ( +/obj/structure/machinery/flasher{ + id = "Containment Cell 5"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/structure/machinery/iv_drip, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"liZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/obj/item/toy/dice/d20, +/obj/item/toy/deck/uno, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"ljf" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"ljm" = ( +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/structure/closet/crate, +/obj/item/clothing/suit/storage/hazardvest/black, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"ljs" = ( +/obj/effect/landmark/start/marine/spec/bravo, +/obj/effect/landmark/late_join/bravo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"ljv" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"ljG" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/condiment/coldsauce, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"ljO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"ljS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"ljW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lka" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"lkd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "kitchen2"; + name = "\improper Kitchen Shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/grunt_rnr) +"lkf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_y = -2; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/living/offices/flight) +"lkm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"lkL" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"lkM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lkV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"lkW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/belt/medical/lifesaver/full, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/radio/marine, +/obj/item/clothing/accessory/storage/surg_vest, +/obj/item/tool/portadialysis, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"lla" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"llo" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"llO" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/hangar) +"lma" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"lml" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"lmq" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"lmw" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"lmz" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/space) +"lmA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/numbertwobunks) +"lmG" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"lne" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"lnh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 8; + name = "\improper Chief MP's Office" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"lnm" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/living/briefing) +"lnt" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"lnu" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/gym) +"lnP" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/window/reinforced, +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"lnS" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = 38 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "ARES Operations Left"; + name = "ARES Operations Shutter"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"lok" = ( +/obj/structure/machinery/cm_vending/clothing/marine/charlie{ + density = 0; + layer = 4.1; + pixel_y = -29 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lol" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"lou" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"loy" = ( +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_x = 27 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"loE" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"loK" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/adv, +/obj/item/tank/emergency_oxygen/double, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"loP" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/laundry) +"loS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"loV" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/obj/structure/machinery/scoreboard{ + id = "basketball"; + pixel_y = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"loY" = ( +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"lpg" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + req_access = list(1) + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"lpl" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"lpt" = ( +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"lpy" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered/agent) +"lql" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"lqF" = ( +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_lobby) +"lqK" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/hallways/hangar) +"lqL" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/aft_hallway) +"lqM" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"lqN" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/port_emb) +"lrq" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/armory) +"lrE" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/s_bow) +"lrF" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"lrH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"lrT" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"lrW" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"lrX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"lsj" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"lsn" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"lso" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"lsp" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"lsD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/living/offices/flight) +"lsV" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/weapon_room) +"ltb" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"ltc" = ( +/obj/effect/landmark/late_join/working_joe, +/obj/effect/landmark/start/working_joe, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) +"ltm" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lto" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"ltv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"ltw" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lty" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"ltA" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"ltI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/northeast, +/area/almayer/squads/charlie) +"ltO" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Lethal Injection Locker" + }, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/obj/item/reagent_container/ld50_syringe/choral, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"ltU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"lul" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Commanding Officer's Quarters"; + req_access = null; + req_access_txt = "31" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"luE" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"luS" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = -3 + }, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"luY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"luZ" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"lvb" = ( +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = 25 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lvh" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"lvA" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"lwh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lwp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/cm_vending/sorted/tech/circuits, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"lwC" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"lwG" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"lwJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie) +"lwY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"lxd" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"lxo" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lxE" = ( +/obj/structure/machinery/cm_vending/clothing/commanding_officer, +/turf/open/floor/almayer/cargo, +/area/almayer/living/commandbunks) +"lxW" = ( +/obj/structure/sign/prop2{ + pixel_y = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lyh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel{ + pixel_x = -1; + pixel_y = 10 + }, +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.01; + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"lyk" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"lym" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"lyq" = ( +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"lyw" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"lyz" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/heart/prosthetic{ + pixel_x = -4 + }, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"lyE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/command/computerlab) +"lyP" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"lyW" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_p) +"lyX" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = null; + req_access_txt = 37; + req_one_access = null + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"lza" = ( +/obj/structure/bed/sofa/vert/grey, +/obj/structure/bed/sofa/vert/grey/top{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"lze" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"lzq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"lzt" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/weapon/gun/rifle/l42a{ + pixel_x = 17; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"lzA" = ( +/obj/structure/bed/chair/comfy{ + dir = 5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"lAa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"lAl" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"lAm" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lAu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"lAy" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"lAQ" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"lAW" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"lBg" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"lBl" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"lBv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"lCg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"lCm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"lCr" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"lCt" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/containment) +"lCE" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"lCL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"lDa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lDk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"lDn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"lDA" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"lDL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"lDN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"lDT" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"lDV" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, +/obj/structure/sign/safety/cryo{ + pixel_y = 26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"lEe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"lEf" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 1 + }, +/area/almayer/medical/containment/cell/cl) +"lEj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering) +"lEv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) +"lEO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"lEV" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"lFe" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"lFh" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"lFj" = ( +/obj/structure/machinery/door_control{ + id = "ARES Operations Right"; + name = "ARES Operations Shutter"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"lFn" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"lFp" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"lFr" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/mess) +"lFt" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/starboard_atmos) +"lFw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lFA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"lFK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"lFL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"lGg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"lGh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"lHk" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"lHu" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/living/grunt_rnr) +"lHB" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"lHG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "30;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"lIj" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/mess) +"lIp" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"lIu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"lII" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/port_atmos) +"lIQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"lIU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"lIY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"lJu" = ( +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"lJv" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext"; + name = "\improper Research Window Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"lJD" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"lJG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"lJI" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"lJK" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"lJL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"lJM" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"lJO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"lJY" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"lKa" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/light/small, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"lKb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"lKM" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"lKO" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lLl" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/lower/port_fore_hallway) +"lLt" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/midship_hallway) +"lLA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"lLC" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"lLO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"lLS" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"lMb" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"lMc" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"lMp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"lMv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/medical_science) +"lMw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"lMx" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/starboard) +"lMy" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"lMF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_n"; + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"lMO" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lMY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"lNk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lNw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"lNL" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"lNR" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"lOn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"lOr" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "crate_room"; + name = "\improper Storage Shutters" + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"lOH" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_two) +"lON" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_door"; + name = "\improper Research Doorway Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"lOX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"lPc" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"lPm" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"lPB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"lPC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"lPO" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) +"lPY" = ( +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/upper/fore_hallway) +"lQa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"lQf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"lQz" = ( +/obj/structure/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"lQB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"lQG" = ( +/obj/structure/machinery/computer/tech_control, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"lQO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/operating_room_three) +"lRh" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/hallways/upper/midship_hallway) +"lRs" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_y = 20 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"lRt" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"lRP" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/chaplain_patch, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"lRX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/hallways/hangar) +"lRZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"lSs" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 5"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"lSJ" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"lSN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"lST" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_p) +"lSX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"lTt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"lTE" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bible{ + desc = "As the legendary US Army chaplain once said, 'There are no Athiests in fancy offices'."; + name = "Holy Bible" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"lUA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/lower/port_fore_hallway) +"lUQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"lVl" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"lVo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"lVS" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "south_central_checkpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"lVW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"lVX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Alpha Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Alpha Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"lWr" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"lWt" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"lWG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"lWO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"lWS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"lWY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"lXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"lXg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"lXl" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"lXO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/item/trash/popcorn{ + layer = 3.1; + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"lXR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"lYg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lYk" = ( +/obj/item/trash/c_tube{ + pixel_x = 16; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"lYt" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"lYL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"lYN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"lYS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"lZb" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"lZs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 + }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"lZH" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north1) +"lZI" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"lZJ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"lZM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/cryo_cells) +"lZZ" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"may" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 16 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/starboard_hallway) +"maI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"maK" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"maL" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/protein_pack, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"maO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"maT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/upper_medical) +"mbx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"mbR" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"mcp" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/starboard_hallway) +"mcL" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"mcW" = ( +/obj/structure/morgue, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/morgue) +"mdk" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"mdm" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/midship_hallway) +"mdo" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"mdC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"mdW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"mea" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/mp_bunks) +"mem" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"meu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"meE" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"meQ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"meT" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"meY" = ( +/turf/closed/wall/almayer{ + damage_cap = 15000 + }, +/area/almayer/squads/alpha) +"mfC" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"mfL" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"mfM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/device/megaphone, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/living/briefing) +"mfO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"mfQ" = ( +/turf/open/floor/almayer/no_build/plate, +/area/almayer/living/pilotbunks) +"mgb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"mgd" = ( +/obj/structure/machinery/autolathe/armylathe/full, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"mgj" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"mgu" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"mgy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"mgF" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"mha" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"mhd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"mhm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"mho" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mhG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"mhI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"mis" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_s) +"miy" = ( +/obj/structure/machinery/optable, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 29 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/shipboard/brig/medical) +"miE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"miV" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"mje" = ( +/obj/structure/machinery/light, +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"mjs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"mjt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"mjy" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"mjS" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"mkc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/closet/crate/trashcart, +/obj/item/reagent_container/food/drinks/cans/souto, +/obj/item/reagent_container/food/snacks/margheritaslice{ + desc = "A slice of classic pizza ruined by the corps."; + name = "dirty margherita slice"; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8 + }, +/obj/item/bananapeel{ + desc = "Ew."; + gender = "plural"; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "\improper finger nails"; + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/stack/medical/ointment{ + layer = 3.5; + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/clothing/gloves/latex, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"mki" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mkl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"mkn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"mkw" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mkx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"mkF" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"mkG" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/engineering/port_atmos) +"mkH" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 + }, +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"mkI" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"mkL" = ( +/obj/structure/pipes/valve/digital/open{ + dir = 4 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"mkP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"mlb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"mlm" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/living/cryo_cells) +"mlF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"mlH" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"mlP" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1; + name = "Corporate Liaison's Bedroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"mmn" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer{ + density = 0; + pixel_x = -32 + }, +/obj/structure/machinery/light{ + alpha = 0; + dir = 8; + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"mmN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "researchlockdownext_se_2"; + name = "\improper Research Window Shutter" + }, +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/plating, +/area/almayer/medical/medical_science) +"mnc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"mnf" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/upper/midship_hallway) +"mng" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/living/briefing) +"mnA" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mnB" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"mnI" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/briefing) +"mnP" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mnW" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/reagent_scanner{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clipboard{ + pixel_x = 8 + }, +/obj/item/paper{ + pixel_x = 8 + }, +/obj/effect/spawner/random/toolbox{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"moc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"mor" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mov" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"moB" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/cells) +"moI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha_bravo_shared) +"moK" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"moL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"moM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"moQ" = ( +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"mph" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"mpn" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"mpJ" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"mpP" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"mpV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_umbilical) +"mpZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"mqb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"mqg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"mqh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"mqt" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/lower/port_midship_hallway) +"mqB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"mqK" = ( +/obj/structure/machinery/cm_vending/gear/spec, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"mqU" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"mrD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mrL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/gm/grass/grass1, +/area/almayer/medical/upper_medical) +"mrM" = ( +/obj/structure/closet/secure_closet/quartermaster_uscm, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"msg" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_y = -32 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 14; + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"msi" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + layer = 2.9; + pixel_x = -8; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"msm" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"msC" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"msP" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"msS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"msZ" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"mtl" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/execution) +"mto" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"mtr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = -29 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"mtD" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"mtM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"mtZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mua" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"mub" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"muq" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/obj/structure/bed/sofa/vert/grey{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"mux" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"muy" = ( +/obj/effect/landmark/start/marine/engineer/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"muQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"muV" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/faxmachine/uscm/command/capt{ + name = "Commanding Officer's Fax Machine"; + pixel_x = -4; + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"muW" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"mvg" = ( +/obj/docking_port/stationary/escape_pod/west, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"mvi" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/revolver/m44{ + desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mvl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/bluecorner, +/area/almayer/squads/delta) +"mvy" = ( +/obj/effect/landmark/start/marine/delta, +/obj/effect/landmark/late_join/delta, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"mvI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"mww" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"mwA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"mwL" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"mwM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"mwP" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"mwR" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/stair_clone/upper) +"mxo" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_p) +"mxq" = ( +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = -20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"mxT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"mxV" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"myl" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"myo" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/soft/purple, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"myJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"myP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"mza" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) +"mzg" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"mzn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"mzq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/hydroponics) +"mzs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"mzv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mzz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"mzF" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"mzI" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mzP" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 + }, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"mzS" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north2) +"mzV" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/living/port_emb) +"mAe" = ( +/obj/structure/window/framed/almayer/aicore/hull/black/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown{ + dir = 4; + plane = -6 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"mAp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mAF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"mAV" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"mAY" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"mBa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mBc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/charlie_delta_shared) +"mBe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/pilotbunks) +"mBk" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/pill/happy{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/tool/surgery/bonegel/empty{ + layer = 3.01; + pixel_x = -5; + pixel_y = 19 + }, +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"mBx" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"mBO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"mCg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_p) +"mCo" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"mCx" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper AI Reception"; + req_access = null; + req_one_access_txt = "91;92" + }, +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs1"; + name = "\improper ARES Reception Shutters" + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"mCE" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"mCJ" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_p) +"mCL" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"mDj" = ( +/obj/structure/machinery/photocopier, +/obj/item/paper{ + color = "grey"; + info = "This is seemingly a photocopy of an image, containing.. OH GOD, WHY, GET IT OUT OF MY SIGHT"; + name = "photocopied image"; + pixel_y = 5 + }, +/obj/structure/sign/safety/rad_shield{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"mDG" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"mDJ" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"mDL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/mousetraps, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"mDR" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"mDT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"mDW" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/briefing) +"mDX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + id_tag = "CO-Office"; + name = "\improper Commanding Officer's Office"; + req_access = null; + req_access_txt = "31" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"mDZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"mEs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + explo_proof = 1; + name = "ARES Chamber Lockdown"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/door/poddoor/railing{ + closed_layer = 4; + density = 0; + id = "ARES Railing"; + layer = 2.1; + open_layer = 2.1; + unacidable = 0; + unslashable = 0 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"mFc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"mFi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"mFq" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_door"; + name = "Door Shutters"; + pixel_y = 29; + req_access_txt = "28" + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"mFL" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"mFN" = ( +/obj/effect/step_trigger/ares_alert/mainframe, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Mainframe Right"; + name = "\improper ARES Mainframe Shutters"; + plane = -7 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"mFO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"mFP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"mFQ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/s_bow) +"mGb" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"mGe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"mGu" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"mGM" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 4; + id = "almayerlink_med_req" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mGT" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/closet/cabinet, +/obj/item/clipboard, +/obj/item/storage/lockbox/loyalty, +/obj/item/storage/briefcase, +/obj/item/reagent_container/spray/pepper, +/obj/item/device/eftpos{ + eftpos_name = "Weyland-Yutani EFTPOS scanner" + }, +/obj/item/device/portable_vendor/corporate, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mHb" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"mHo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = -17 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"mHx" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"mHz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/chief_mp_office) +"mHD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"mHF" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/headband/red{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mHO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"mHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/maint/upper/u_a_s) +"mHY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"mIa" = ( +/obj/structure/platform/metal/almayer/west, +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"mId" = ( +/obj/structure/closet, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"mIy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"mIz" = ( +/obj/structure/largecrate/random/secure, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mIJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 6 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"mIP" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"mIR" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"mJa" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/trash/boonie, +/obj/item/trash/chunk/hunk, +/obj/item/trash/crushed_cup, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"mJe" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"mJi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"mJj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/alpha) +"mJu" = ( +/turf/open/floor/almayer/uscm/directional, +/area/almayer/command/cic) +"mJx" = ( +/obj/structure/prop/server_equipment/broken, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"mJL" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/pilotbunks) +"mJO" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) +"mJP" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/squads/bravo) +"mKb" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/squads/alpha) +"mKi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"mKq" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/bridgebunks) +"mKs" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"mKw" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"mKx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"mKy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"mKJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"mKN" = ( +/obj/effect/landmark/start/pilot/cas_pilot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"mLe" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = 25 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"mLg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"mLz" = ( +/obj/structure/machinery/door_control{ + id = "pobunk1"; + name = "PO1 Privacy Shutters"; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"mLF" = ( +/obj/effect/landmark/start/marine/medic/bravo, +/obj/effect/landmark/late_join/bravo, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"mLN" = ( +/obj/structure/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"mLR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"mMg" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"mMB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mMP" = ( +/obj/effect/landmark/start/intel, +/obj/effect/landmark/late_join/intel, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"mMV" = ( +/obj/structure/pipes/vents/scrubber, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"mNG" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_y = 24; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mNI" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/morgue) +"mNK" = ( +/obj/structure/closet/secure_closet/brig/restraints, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"mNX" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"mOb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"mOg" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"mOi" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/command/airoom) +"mOE" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mOZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/midship_hallway) +"mPc" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"mPf" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/lifeboat) +"mPh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"mPj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"mPn" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"mPw" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"mPM" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_midship_hallway) +"mPR" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mQc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"mQd" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/tool/weldpack, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"mQn" = ( +/obj/structure/sign/safety/rad_shield{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/engine_core) +"mQw" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"mQx" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"mQC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"mQY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"mRn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES Interior"; + name = "\improper ARES Inner Chamber Shutters"; + plane = -7 + }, +/obj/effect/step_trigger/ares_alert/core, +/obj/structure/sign/safety/terminal{ + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = -18; + pixel_y = 6 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"mRq" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"mRH" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 18 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"mRI" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_s) +"mRJ" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/midship_hallway) +"mRQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"mRU" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) +"mRW" = ( +/turf/open/floor/almayer/research/containment/corner1, +/area/almayer/medical/containment/cell/cl) +"mSi" = ( +/obj/structure/bed/sofa/vert/grey/top{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mSl" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/clothing/glasses/mgoggles, +/obj/item/clothing/glasses/mgoggles, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"mSo" = ( +/obj/structure/surface/rack, +/obj/item/facepaint/sniper, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"mSr" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"mSs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"mSz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"mSK" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"mSM" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"mSU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/blue, +/area/almayer/squads/charlie_delta_shared) +"mTc" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/emails{ + dir = 4; + pixel_y = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"mTd" = ( +/obj/structure/machinery/smartfridge/chemistry{ + pixel_x = -3; + pixel_y = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"mTi" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"mTm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/navigation) +"mTp" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/machinery/cm_vending/clothing/medical_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/medical/hydroponics) +"mTr" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = 24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Main Corridor"; + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"mTL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"mTN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"mUq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"mUx" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"mUE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"mUI" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mUP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"mUY" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"mVh" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"mVr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mVA" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"mVE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_y = 26; + req_one_access_txt = "3;22;19;7" + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"mVF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "officers_mess"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;30" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"mWs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"mWy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/alpha_bravo/yellow{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"mWD" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"mWJ" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"mWQ" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/obj/structure/sign/banners/maximumeffort{ + pixel_y = 30 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) +"mWV" = ( +/obj/structure/bed/chair/comfy/blue, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"mWW" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"mXj" = ( +/turf/closed/wall/almayer, +/area/almayer/living/commandbunks) +"mXm" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"mYt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"mYv" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + negdir = 4; + posdir = 1 + }, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"mYA" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"mZb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/command/cichallway) +"mZc" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 35 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"mZf" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/obj/item/reagent_container/food/snacks/meatpizzaslice{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"mZr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"mZF" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi_ext" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"mZL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"mZM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/navigation) +"mZP" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"mZQ" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/light, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"naa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nac" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"nah" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/item/desk_bell{ + anchored = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/lobby) +"naj" = ( +/obj/structure/machinery/door_control{ + id = "ARES JoeCryo"; + name = "ARES WorkingJoe Bay Shutters"; + pixel_x = -24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"nar" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"nau" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"naw" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"naB" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/perma) +"naK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"naR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/sleep_console{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"naV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Gym" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"nbu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"nbH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"ncf" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"nci" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ncl" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) +"ncp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"ncx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Emergency Air Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"ncE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/autodispenser{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ncG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"ncT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"ndl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ndm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"ndZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"nec" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"nef" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"ner" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"new" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"nex" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"neC" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/processing) +"neG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"neH" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"neO" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/navigation) +"neS" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"neT" = ( +/obj/structure/transmitter/rotary{ + name = "CL Office Telephone"; + phone_category = "Offices"; + phone_id = "CL Office" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"neZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"nff" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"nfw" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -24; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"nfC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"nfF" = ( +/obj/structure/ship_ammo/sentry, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"ngf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"ngn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"ngr" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = -17 + }, +/obj/structure/bed/sofa/south/grey/left, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/lobby) +"ngw" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/frag, +/obj/item/mortar_shell/frag, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"ngA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"ngI" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/briefing) +"ngK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"ngU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"nhi" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/turf/open/floor/almayer/silver, +/area/almayer/living/briefing) +"nhr" = ( +/obj/structure/ladder{ + height = 1; + id = "engineeringladder" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/workshop) +"nhw" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"nhx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/deck{ + desc = "A simple deck of playing cards. You could play Caravan with these!"; + pixel_y = 12 + }, +/obj/item/toy/deck/uno{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"nhE" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nhG" = ( +/obj/item/newspaper{ + name = "character sheet" + }, +/obj/item/device/cassette_tape/heavymetal{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/toy/dice, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Privacy Shutters"; + pixel_x = -8; + pixel_y = -6; + req_access_txt = "3" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"nhN" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"nhV" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"nic" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stern) +"nig" = ( +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"nii" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"nik" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"nim" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + access_modified = 1; + dir = 2; + name = "\improper Chief Engineer's Office"; + req_one_access = null; + req_one_access_txt = "1;6" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CE Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/ce_room) +"nis" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"niF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/medical_science) +"niL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"niR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"niY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"nja" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"njd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"njk" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"njn" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_s) +"njD" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south1) +"njJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/toy/crayon/blue{ + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"njO" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"njS" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"nkc" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"nkj" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nkn" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"nks" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"nkx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"nkF" = ( +/obj/structure/bed/chair/bolted{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"nkH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"nkK" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresDown2"; + vector_x = 102; + vector_y = -61 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"nkX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_y = 5 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"nlh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"nlz" = ( +/obj/structure/machinery/brig_cell/cell_3{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"nlB" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/living/briefing) +"nlI" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"nlW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"nme" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/port) +"nmh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"nmp" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"nmH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"nmK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"nmV" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/command/securestorage) +"nmY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/lower/workshop/hangar) +"nne" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge2" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"nnr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/lower/port_aft_hallway) +"nny" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"nnD" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/stair_clone/upper) +"nnL" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliaison) +"nnX" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"noe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/aft_hallway) +"noj" = ( +/obj/structure/largecrate, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"noo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_s"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"nop" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"nos" = ( +/obj/structure/machinery/chem_storage/medbay{ + dir = 1 + }, +/obj/structure/machinery/chem_storage/research{ + dir = 1; + layer = 3; + pixel_y = 18 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"nou" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"noy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"noE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"noI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"noO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"noP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"nph" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/engineering/starboard_atmos) +"npq" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 8; + id = "ares_vault_in"; + name = "aicore" + }, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"npt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"npw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_midship_hallway) +"npA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"npO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"nqe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"nqx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"nqO" = ( +/obj/structure/closet/secure_closet/fridge/fish/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"nqW" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"nrb" = ( +/obj/item/robot_parts/arm/l_arm, +/obj/item/robot_parts/leg/l_leg, +/obj/item/robot_parts/arm/r_arm, +/obj/item/robot_parts/leg/r_leg, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"nri" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nrw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/squads/charlie) +"nrN" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"nrO" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"nsc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"nsd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/bulbs{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nso" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"nsr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"nsH" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/upper/midship_hallway) +"nsQ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/captain_mess) +"nsY" = ( +/turf/closed/wall/almayer, +/area/almayer/living/port_emb) +"ntd" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/clipboard{ + pixel_x = 12 + }, +/obj/item/tool/pen{ + pixel_x = 12 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/structure/sign/ROcreed{ + pixel_y = 30 + }, +/obj/item/device/flashlight/lamp{ + pixel_y = -11; + pixel_x = 7 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"ntj" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/computerlab) +"ntx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_2"; + name = "\improper Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"ntI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"nux" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "perma_lockdown_1"; + name = "\improper Perma Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"nuA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"nuK" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"nuM" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south2) +"nuN" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"nuZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"nve" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nvz" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south2) +"nvG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 21 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"nvI" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"nvM" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/medical/chemistry) +"nvT" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"nvX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nwb" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"nwi" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"nwx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"nwD" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/command/cic) +"nwG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"nwL" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"nwU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"nwW" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"nwY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"nxb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/workshop) +"nxe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/sheet/metal{ + desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; + icon = 'icons/obj/structures/props/semiotic_standard.dmi'; + icon_state = "coffee"; + name = "coffee semiotic"; + pixel_x = 20; + pixel_y = 12; + singular_name = "coffee semiotic" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nxx" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"nyj" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"nyw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"nyK" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/hallways/upper/fore_hallway) +"nyQ" = ( +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"nyS" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"nzt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"nzv" = ( +/obj/structure/bed/sofa/south/white/right, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/upper_medical) +"nzD" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"nzO" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"nzT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "brignorth"; + name = "\improper Brig Lobby" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"nAd" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"nAm" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nAv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"nAY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"nBa" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"nBi" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/monocle, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/weapon/pole/fancy_cane{ + pixel_x = 5 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"nBw" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/living/briefing) +"nBE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"nBF" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"nBJ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/s_bow) +"nBK" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north2) +"nBV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"nCe" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"nCf" = ( +/obj/effect/landmark/start/marine/tl/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"nCj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 4; + pixel_y = 12 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 4; + name = "Remote dropship navigation computer"; + pixel_y = -12 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"nCn" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"nCp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"nCx" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + desc = "A premium double-malt whiskey, this bottle was gifted to the Captain of the USS Almayer after the completion of the ship's space trials by the VADM. himself."; + pixel_x = 3; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 11; + pixel_y = 16 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/pipe{ + layer = 2.8; + pixel_x = 14 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"nCD" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"nCM" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"nCR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/auxiliary_officer_office) +"nCT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"nDa" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"nDb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"nDo" = ( +/obj/structure/closet/l3closet/general, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"nDy" = ( +/obj/structure/bed/chair/comfy/ares{ + dir = 1 + }, +/obj/structure/pipes/vents/pump/no_boom/gas{ + vent_tag = "Core Chamber" + }, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"nDH" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"nDM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"nEc" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"nEl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"nEo" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"nEF" = ( +/obj/structure/machinery/conveyor_switch{ + id = "gym_1"; + name = "treadmill switch" + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"nEH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/computer/research{ + dir = 4; + pixel_y = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -6; + pixel_y = -5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nEJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"nEO" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"nEZ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"nFc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Containment Cell 4"; + name = "Control Panel"; + pixel_x = -17; + req_access_txt = "200"; + pixel_y = 9 + }, +/obj/item/storage/photo_album, +/obj/structure/machinery/computer/cameras/containment/hidden{ + dir = 4; + pixel_x = -17; + pixel_y = -5; + plane = -5 + }, +/obj/item/device/camera_film{ + pixel_x = -3 + }, +/obj/structure/machinery/door_control/cl/office/divider{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"nFm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"nFs" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"nFA" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nFI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_y = 30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"nFK" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"nFX" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"nGh" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 1; + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"nGi" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"nGk" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"nGM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"nGY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/north2) +"nHs" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"nHu" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"nHG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"nHJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"nHL" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nHP" = ( +/obj/structure/machinery/light/double/blue{ + dir = 1; + light_color = "#a7dbc7" + }, +/turf/open/gm/grass/grass1, +/area/almayer/medical/upper_medical) +"nHX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"nIj" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/offices) +"nIt" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/starboard_missiles) +"nID" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin{ + pixel_x = -7 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/tool/pen{ + pixel_y = 3 + }, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"nIE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"nIG" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"nIN" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_p) +"nIS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/basketball) +"nJa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower/engine_core) +"nJs" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"nJu" = ( +/obj/item/newspaper, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"nJH" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 8; + pixel_x = 17 + }, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"nKq" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"nKO" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "take-ins"; + pixel_x = 7; + pixel_y = 28; + range = 0 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"nKP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"nLk" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"nLp" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_p) +"nLt" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/req) +"nLI" = ( +/obj/structure/sign/safety/terminal{ + layer = 2.5; + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/chem_simulator{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nLJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"nMe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"nMp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"nMV" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/upper_medical) +"nNg" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"nNt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"nNv" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"nNx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"nNA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"nNH" = ( +/turf/open/floor/almayer/emeraldcorner/north, +/area/almayer/living/briefing) +"nNT" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"nNV" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"nNX" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"nNY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"nOp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"nOx" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"nOC" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"nOX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"nPa" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"nPb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"nPf" = ( +/obj/structure/machinery/computer/cameras/almayer/containment{ + dir = 8; + pixel_x = -4; + pixel_y = 6 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/structure/machinery/door_control{ + id = "containmentlockdown_S"; + name = "Containment Lockdown"; + pixel_x = -5; + pixel_y = -4; + req_one_access_txt = "19;28" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"nPs" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"nPx" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"nPB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/hangar) +"nPE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/centrifuge{ + pixel_y = 7 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"nPO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/maint/hull/lower/l_m_s) +"nPT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; + dir = 4; + id = "crate_room4"; + name = "dilapidated storage shutters" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"nPY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/command/lifeboat) +"nQn" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"nQo" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"nQv" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/squads/req) +"nQA" = ( +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"nRA" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/port_midship_hallway) +"nRE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"nRH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"nRN" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"nRR" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"nRX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"nSk" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"nSq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"nSu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"nSw" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"nSG" = ( +/obj/structure/machinery/door_control{ + id = "tcomms"; + name = "Telecommunications Entrance"; + pixel_y = 25 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"nSS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"nTl" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"nTo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/transmitter{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 + }, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"nTs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"nTA" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"nTH" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"nTR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"nTZ" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/living/gym) +"nUa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"nUd" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/spray/cleaner{ + layer = 3.2; + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"nUj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 2"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"nUm" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nUn" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"nUv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"nVa" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"nVi" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"nVm" = ( +/obj/structure/machinery/door_control{ + id = "firearm_storage_armory"; + name = "Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"nVn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"nVo" = ( +/obj/vehicle/powerloader, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/repair_bay) +"nVq" = ( +/obj/structure/sign/safety/security{ + pixel_x = -17; + pixel_y = 6 + }, +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"nVB" = ( +/turf/open/floor/almayer, +/area/almayer/command/securestorage) +"nVE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"nVF" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"nVQ" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"nVR" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/perma) +"nVX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D1"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"nWf" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"nWN" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"nWS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"nXo" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"nXG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south2) +"nXO" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/fancy/cigar{ + layer = 3.04; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -11; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -2; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"nXU" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 1; + name = "\improper Requisitions Storage" + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "almayerlink_OT1_req" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"nXV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"nYc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"nYd" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"nYg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"nYi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"nYn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"nYp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"nYD" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/operating_room_four) +"nYE" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/lifeboat) +"nYR" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"nZf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"nZm" = ( +/obj/structure/machinery/door_control{ + access_modified = 1; + id = "OTStore"; + name = "Shutters"; + pixel_y = 24; + req_one_access_txt = "35" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"nZy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/facepaint/black, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"nZK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"nZR" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"nZW" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"oap" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/upper_medical) +"oaw" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"oaK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"oaO" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/machinery/recycler, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/maint/hull/lower/l_a_p) +"oaP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/cmcap, +/obj/item/clothing/head/cmcap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"oaW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"obo" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink_med1_req" + }, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"oby" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"obC" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/engineering/port_atmos) +"obE" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"obQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"ocf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"ocm" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/machinery/space_heater, +/obj/item/ashtray/glass{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"ocB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 24 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 14; + pixel_y = 38 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 + }, +/obj/structure/sign/safety/laser{ + pixel_y = 24 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = 38 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"ocL" = ( +/obj/structure/machinery/cryopod/right{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"odb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"ode" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"odl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"odt" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"odu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/command/lifeboat) +"odB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"odD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"odN" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "SEA Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/sea_office) +"odV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"oee" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/command/lifeboat) +"oef" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha_bravo_shared) +"oer" = ( +/turf/closed/wall/almayer{ + damage_cap = 15000 + }, +/area/almayer/squads/delta) +"oes" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"oex" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"oeB" = ( +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/processing) +"oeH" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"oeM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"oeZ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/medical) +"ofH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"ofK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"ofU" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"ofY" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + layer = 3.3; + pixel_y = 6 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ogK" = ( +/obj/structure/bed/bedroll{ + desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; + name = "cat bed" + }, +/obj/structure/machinery/firealarm{ + pixel_x = -1; + pixel_y = 28 + }, +/mob/living/simple_animal/cat/Jones{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ogT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"ohi" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"ohj" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"ohu" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig Maintenance" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"ohA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/weapon_room) +"ohB" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ohE" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"ohH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D3"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"ohI" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ohJ" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"ohL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north2) +"ohS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/captain_mess) +"oif" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"oih" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/bed{ + icon_state = "abed"; + layer = 3.5; + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_y = 4 + }, +/obj/item/bedsheet/orange{ + pixel_y = 12 + }, +/obj/item/bedsheet/orange{ + layer = 3.2 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"oiq" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"oir" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/power/apc/almayer/hardened/east, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"oit" = ( +/obj/effect/landmark/railgun_computer{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"oix" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"oiz" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigwarden"; + dir = 1; + name = "\improper Warden's Office" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"oiL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"oiQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"oiX" = ( +/obj/docking_port/stationary/vehicle_elevator/almayer, +/turf/open/floor/almayer/empty/vehicle_bay, +/area/almayer/hallways/lower/vehiclehangar) +"oiY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/obj/structure/sink{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"ojh" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"ojF" = ( +/obj/structure/machinery/cm_vending/clothing/tl/charlie{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"ojH" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"ojQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ojX" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_p) +"ojZ" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"oka" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"okd" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "n_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"okg" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"okD" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer6" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"okG" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/north1) +"old" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"olw" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"olF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/midship_hallway) +"olM" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"olN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"olO" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"olQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"olU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/command/cichallway) +"olW" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/s_bow) +"omb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"ome" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"omo" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/lockerroom) +"omt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"omx" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"omy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"omP" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"onn" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"onv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"onN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"onQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"onY" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"oog" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"ooh" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"oos" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"oou" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"ooA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"opd" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"opu" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"opC" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"opD" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"opF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/chief_mp_office) +"opH" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"opJ" = ( +/obj/docking_port/stationary/emergency_response/external/port4, +/turf/open/space/basic, +/area/space) +"opV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"oqc" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oqt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"oqu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"oqv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"oqw" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"oqI" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"oqS" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"oqY" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/obj/structure/plasticflaps, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"oqZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 5 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = -4; + pixel_y = 19 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"ora" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 9; + pixel_y = 15 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"orx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"orH" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/lifeboat) +"orN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"osc" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"osr" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"osx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"osz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"osA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"osI" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop) +"osQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"osT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/ice_colony/hula_girl{ + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"osU" = ( +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_x = -27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"osX" = ( +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"otp" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"otq" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"otu" = ( +/turf/closed/wall/almayer/research/containment/wall/connect_w, +/area/almayer/medical/containment/cell) +"otC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"otW" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ouf" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"oug" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/computer/squad_changer{ + dir = 8; + layer = 2.99; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"our" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ouw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/bombcloset, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"ouB" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"ouU" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"ouW" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/command/cichallway) +"ove" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ovi" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/upper_engineering/port) +"ovp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"ovG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"ovQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"owg" = ( +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"owU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"owW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "19;29" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/sea_office) +"oxc" = ( +/obj/structure/bed, +/obj/item/toy/plush/farwa{ + pixel_x = 5 + }, +/obj/item/clothing/under/redpyjamas, +/obj/item/bedsheet/orange, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"oxe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"oxl" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"oxn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"oxu" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"oxy" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"oxU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"oyB" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"oyC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"oyE" = ( +/obj/effect/landmark/start/intel, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 29; + serial_number = 12 + }, +/obj/effect/landmark/late_join/intel, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"oyG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"oyO" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"oyR" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"oyX" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"ozq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"ozz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"ozH" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"ozN" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat2-D2"; + linked_dock = "almayer-lifeboat2"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"ozT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"oAa" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"oAK" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"oAO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"oAT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oBq" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 1"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/cells) +"oBr" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"oBA" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"oBD" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Access Hall" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"oBG" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/flasher{ + id = "briefing_flash"; + range = 12 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/living/briefing) +"oCa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"oCb" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"oCf" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"oCi" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/navigation) +"oCl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"oCK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"oDa" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"oDh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"oDi" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"oDm" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"oDv" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/living/gym) +"oDx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "30;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"oDy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"oDE" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 + }, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"oDJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains{ + pixel_x = 18; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = 11; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_medbay) +"oDL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"oDR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/medical_science) +"oDU" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/port_midship_hallway) +"oDY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"oEf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"oEn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/hallways/upper/midship_hallway) +"oEo" = ( +/obj/effect/landmark/start/marine/medic/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"oEw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -5; + pixel_y = 10 + }, +/obj/structure/sign/safety/medical{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"oEy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"oEA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump{ + pixel_y = 9; + starting_attachment_types = list(/obj/item/attachable/stock/shotgun) + }, +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.01 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"oEE" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"oER" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"oEX" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/living/port_emb) +"oFm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop) +"oFn" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters/clippers, +/obj/item/restraint/handcuffs/zip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"oFr" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oFz" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"oFP" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oFV" = ( +/obj/structure/sign/poster{ + pixel_x = -32; + serial_number = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"oFY" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/lobby) +"oGf" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"oGh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"oGi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oGj" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"oGm" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_umbilical) +"oGx" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"oGy" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"oGC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"oGI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"oGJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"oGL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"oGP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/living/port_emb) +"oGW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"oHc" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"oHf" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"oHg" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"oHl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"oHs" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oHt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"oHx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"oIa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"oIh" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"oIn" = ( +/obj/effect/landmark/start/liaison, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"oIp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"oIt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"oIB" = ( +/turf/closed/wall/almayer, +/area/almayer/command/combat_correspondent) +"oIY" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"oJj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"oJk" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop) +"oJm" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"oJp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"oJK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"oJL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"oKb" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"oKv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"oKx" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"oLf" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"oLj" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"oLr" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/storage/xeno_tag_case/full{ + pixel_y = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"oLF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "\improper Brig Lobby"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/lobby) +"oLN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"oLU" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/hydroponics) +"oMe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"oMi" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"oMr" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"oMs" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"oMH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"oMQ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"oNb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"oNj" = ( +/obj/structure/sign/prop1{ + pixel_x = -32; + pixel_y = 2 + }, +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"oNp" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"oNJ" = ( +/obj/structure/transmitter{ + name = "CMO Office Telephone"; + phone_category = "Offices"; + phone_id = "CMO Office"; + dir = 4; + pixel_x = -20 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"oNK" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"oNM" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"oNP" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oNW" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17; + pixel_y = -7 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"oNY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 + }, +/obj/structure/machinery/door_control/cl/quarter/officedoor{ + pixel_x = -25 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"oOp" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"oOw" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"oON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/starboard) +"oOO" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"oOW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"oOZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/aft_hallway) +"oPf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"oPy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/command/cichallway) +"oPz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oPE" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/command/cic) +"oPF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"oPH" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"oQn" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/port_midship_hallway) +"oQs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/book/manual/surgery{ + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"oQw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/hallways/lower/port_umbilical) +"oQB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"oQH" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/briefing) +"oQI" = ( +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/port) +"oQJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oQL" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oQM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/tool/pen, +/obj/item/book/manual/marine_law{ + pixel_x = 15; + pixel_y = 5 + }, +/obj/item/book/manual/security_space_law{ + pixel_x = 16; + pixel_y = 9 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/living/auxiliary_officer_office) +"oRk" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"oRm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"oRy" = ( +/obj/structure/sign/safety/med_cryo{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"oRJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/surface/table/almayer{ + layer = 3 + }, +/obj/effect/landmark/map_item, +/obj/item/device/megaphone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"oRO" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"oRV" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"oRW" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"oSq" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel" + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"oSw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cichallway) +"oSx" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"oSy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"oSC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"oSG" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"oSL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"oSM" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"oTe" = ( +/obj/item/prop/almayer/box, +/obj/item/prop{ + desc = "This M57 smartgun was utilized in field testing by the greatest smartgunner the USS Almayer ever had, Larry A.W Lewis, until he was fatally and tragically decapitated from a single clean shot to the head by a CLF sniper. As he didn't wear a helmet, it took weeks to find the body."; + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; + icon_state = "m56c"; + item_state = "m56c"; + name = "broken M57 'Larry's Will' smartgun"; + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/frame/light_fixture/small{ + pixel_y = 17 + }, +/obj/structure/machinery/door_control{ + id = "crate_room4"; + name = "storage shutters"; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/cobweb2/dynamic, +/obj/item/packageWrap, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"oTA" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"oTH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"oUi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oUt" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oUx" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"oUG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"oUZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"oVf" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/evidence{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/evidence{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"oVk" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"oVo" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"oVY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"oWf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/obj/item/device/defibrillator, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"oWg" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"oWq" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"oWx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"oWz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/starboard_garden) +"oWE" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oWF" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"oWK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"oWN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"oWU" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"oXb" = ( +/obj/effect/landmark/start/marine/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"oXp" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"oXJ" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"oXM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"oXY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"oYi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"oYp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/living/offices/flight) +"oYr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"oYs" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"oYA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/dropship_equipment/fuel/cooling_system{ + layer = 3.5 + }, +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"oYZ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"oZp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/item/reagent_container/food/snacks/grilledcheese{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/prop/magazine/boots/n055{ + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/living/offices/flight) +"oZx" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs2"; + name = "\improper ARES Reception Shutters"; + plane = -7 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"oZy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"oZD" = ( +/obj/structure/sign/poster/music{ + pixel_x = -27 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -10; + pixel_y = -1 + }, +/obj/item/tool/pen{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/tool/pen{ + pixel_x = -11; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"oZI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"oZV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"oZX" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"paa" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/containment) +"pas" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 25 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 15; + pixel_y = 25 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"pax" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Reception" + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"paI" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"paJ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"paL" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/command/cic) +"pbm" = ( +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/mp_bunks) +"pbo" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"pbp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"pbs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"pbV" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/command/cic) +"pbW" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"pcc" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"pcf" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"pcj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/shipboard/brig/cic_hallway) +"pcl" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"pcs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"pcv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"pcE" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"pcG" = ( +/obj/structure/machinery/door_control{ + id = "dccbunk"; + name = "DCC Privacy Shutters"; + pixel_x = 24 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"pcO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"pcY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"pdo" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/north2) +"pdp" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"pdT" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"pek" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_bow) +"pep" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_p) +"peM" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_s) +"peO" = ( +/obj/structure/sign/safety/medical{ + pixel_x = -17; + pixel_y = 6 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -9 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/lobby) +"pfa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"pfc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/starboard) +"pfd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/starboard_hallway) +"pfp" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone) +"pfD" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"pfJ" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"pfL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"pfM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"pfT" = ( +/obj/structure/machinery/ares/processor/interface, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"pga" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"pgw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"pgD" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/south1) +"pgJ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"pgM" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 10; + pixel_y = 3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"pgN" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"pgP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"pha" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"phd" = ( +/obj/structure/sign/poster/safety{ + pixel_x = 27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"phj" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"phw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"phN" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"phW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = -32 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"pij" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"piJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"piK" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 1"; + name = "\improper cell shutter" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"piQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"pje" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"pjh" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"pjj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/starboard) +"pjw" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_lobby) +"pjz" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_bow) +"pjF" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + pixel_y = 20; + density = 0 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"pjG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/squads/req) +"pjO" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"pjP" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"pjR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"pkz" = ( +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha_bravo_shared) +"pkA" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"pkS" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"pld" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red/northeast, +/area/almayer/maint/upper/u_a_p) +"plv" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) +"plK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"pmd" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"pmq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"pmv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"pmH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pmV" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/obj/structure/machinery/computer/tech_control{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/no_build/ai_floors, +/area/almayer/command/airoom) +"pnh" = ( +/obj/structure/ladder{ + height = 2; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/p_bow) +"pns" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"pnC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"pnL" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/starboard) +"pok" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"poA" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 10 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"poD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"ppe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"ppn" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"ppF" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/obj/structure/surface/table/almayer, +/obj/item/clipboard{ + pixel_x = -4 + }, +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/camera, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"ppG" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"ppM" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"ppV" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pqc" = ( +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"pqi" = ( +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/tool/weldingtool, +/obj/item/tool/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/item/device/reagent_scanner, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"pql" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"pqw" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"pqD" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"pqF" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/cigarbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"pqK" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"pqM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Workshop Vendors" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"pqP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"pqX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"pqY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"prf" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"pri" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"prl" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"prx" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"prE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/tray, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/head/chefhat, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"prP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"prX" = ( +/obj/structure/ladder{ + height = 2; + id = "AftStarboardMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"prY" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray, +/obj/item/tool/kitchen/utensil/pknife, +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"psa" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"psk" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"psK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "tc02"; + name = "Door Release"; + normaldoorcontrol = 1; + pixel_x = -28; + pixel_y = 23 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"psO" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/lower_medical_medbay) +"ptf" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"pth" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/gm/grass/grass1, +/area/almayer/medical/upper_medical) +"ptj" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"ptq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/processing) +"ptA" = ( +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/starboard) +"ptK" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"ptQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_stern) +"pub" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/upper/fore_hallway) +"pum" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"pun" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/shipboard/port_missiles) +"pur" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/cryo_cells) +"puI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"puO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"puP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/upper/midship_hallway) +"puT" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"pvh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = -9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"pvi" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/aft_hallway) +"pvI" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"pvJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"pvK" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/structure/machinery/firealarm{ + pixel_x = 8; + pixel_y = 28 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/transmitter/rotary{ + name = "Intelligence Center Telephone"; + phone_category = "Almayer"; + phone_id = "Intelligence Center Telephone" + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"pvP" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/starboard_missiles) +"pwl" = ( +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/hallways/upper/fore_hallway) +"pwx" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pwG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"pxj" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"pxo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"pxD" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/machinery/vending/snack{ + pixel_x = -18; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"pxG" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"pxJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"pyc" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/emerald/north, +/area/almayer/living/port_emb) +"pyi" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"pyj" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"pyl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"pyy" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"pyC" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"pyL" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"pzc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"pzd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"pzj" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pzw" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"pzG" = ( +/obj/docking_port/stationary/emergency_response/port1, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"pzJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"pzM" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pzV" = ( +/turf/open/floor/almayer/bluecorner/north, +/area/almayer/living/briefing) +"pzW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hallways/lower/vehiclehangar) +"pzX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"pAm" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"pBG" = ( +/turf/closed/wall/almayer, +/area/almayer/command/corporateliaison) +"pBU" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"pCq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"pCr" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/blend, +/turf/closed/wall/almayer{ + opacity = 0 + }, +/area/almayer/squads/req) +"pDh" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"pDo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/starboard_point_defense) +"pDr" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"pDt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/bravo) +"pDB" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"pDM" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"pDW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/chief_mp_office) +"pEl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/ladder/fragile_almayer{ + height = 1; + id = "kitchen" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"pEB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"pEJ" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 2"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/structure/machinery/light/containment{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"pEY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"pFq" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"pFr" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"pGh" = ( +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -9; + pixel_y = 19 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"pGj" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"pGE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/hand_labeler{ + pixel_x = 7 + }, +/obj/item/paper_bin/uscm{ + pixel_y = 5 + }, +/obj/item/tool/pen, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17 + }, +/obj/item/device/megaphone, +/obj/item/book/manual/medical_diagnostics_manual, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"pGG" = ( +/obj/effect/landmark/start/doctor, +/obj/structure/sign/safety/maint{ + pixel_y = 26 + }, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"pGK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"pGT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"pHc" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"pHh" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"pHp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/perma) +"pHA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"pHF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"pHG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/basketball) +"pId" = ( +/obj/item/storage/box/nade_box/tear_gas, +/obj/item/storage/box/nade_box/tear_gas{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"pIo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"pIC" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"pIU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"pIV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"pIZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/north1) +"pJl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/upper_medical) +"pJq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"pJr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"pJD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/item/tool/soap, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"pJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"pKh" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"pKx" = ( +/obj/structure/platform/metal/almayer/east, +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"pKB" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"pKH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"pKL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/secure{ + pixel_x = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"pKU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"pKW" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/repair_bay) +"pKZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"pLa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"pLt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"pLE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"pLO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"pLW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"pMj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"pMk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"pMp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"pMA" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"pMH" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"pMJ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"pML" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/port_emb) +"pNa" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"pNP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/item/reagent_container/food/snacks/cheesewedge{ + pixel_x = -10; + pixel_y = 7 + }, +/mob/living/simple_animal/mouse/white/Doc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"pOi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"pOp" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"pOD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"pOH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"pON" = ( +/turf/open/floor/almayer/uscm/directional/west, +/area/almayer/command/cic) +"pOW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"pOY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"pPd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"pPv" = ( +/obj/structure/closet/cabinet, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/wine, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"pPy" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"pPA" = ( +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 27; + serial_number = 12 + }, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pPG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"pPM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/securestorage) +"pPN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/port_missiles) +"pPQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"pQc" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/offices) +"pQr" = ( +/obj/structure/bed, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"pQy" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/bridgebunks) +"pQz" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_s"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"pQF" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_x_offset = 0; + vend_y_offset = 0 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"pQI" = ( +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/mp_bunks) +"pQN" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"pQP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"pQV" = ( +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"pQY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"pRn" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"pRs" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"pRy" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell/cl) +"pRO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/shipboard/brig/cic_hallway) +"pRT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 8; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"pRX" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"pRZ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop) +"pSF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"pSQ" = ( +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"pSU" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"pTj" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"pTI" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"pTS" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/fore_hallway) +"pTX" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"pTY" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/upper/u_a_s) +"pUd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/mono, +/area/almayer/command/computerlab) +"pUf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"pUg" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs2"; + name = "ARES Reception Stairway Shutters"; + pixel_x = 24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"pUj" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"pUp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 27 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"pUv" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/lower/engine_core) +"pUA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced/ultra{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/obj/item/device/flashlight/lamp/on, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/living/briefing) +"pUD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/brig/processing) +"pVh" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"pVr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pVx" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/req) +"pVA" = ( +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 2; + pixel_y = 18 + }, +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"pVB" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ + dir = 8 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/living/briefing) +"pVF" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"pWb" = ( +/obj/effect/landmark/start/marine/tl/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"pWd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"pWr" = ( +/obj/structure/surface/rack, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/structure/sign/safety/hvac_old{ + pixel_y = -26 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"pWw" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"pWN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/living/pilotbunks) +"pWU" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"pXl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"pXx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"pXV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"pXZ" = ( +/obj/effect/landmark/start/marine/spec/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"pYh" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/one{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pYo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/containment) +"pYu" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/obj/structure/sign/safety/security{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"pYN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"pYQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"pYS" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"pYX" = ( +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"pZj" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"pZH" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westright, +/obj/structure/window/reinforced/tinted/frosted, +/obj/item/tool/soap/deluxe, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliaison) +"pZK" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/port) +"pZR" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"pZS" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"qam" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"qan" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qas" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qax" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"qaV" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering) +"qaW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"qbw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"qbx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"qby" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/living/briefing) +"qbD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"qbO" = ( +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/pilotbunks) +"qbP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"qbU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"qbZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + dir = 1; + name = "\improper Engineering Bunks" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"qck" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/cameras/wooden_tv/almayer{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"qcy" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"qdk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"qdv" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/clothing/head/beret/royal_marine, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"qdz" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"qdA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"qdJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"qdQ" = ( +/obj/structure/bed/sofa/vert/grey/top{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"qdV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"qec" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"qej" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"qep" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + access_modified = 1; + dir = 2; + name = "\improper Field Surgery Equipment"; + req_access_txt = "20"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"qer" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"qeF" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"qeK" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/surface/table/reinforced/black, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/device/helmet_visor{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"qeY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"qfa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"qfh" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"qfq" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_umbilical) +"qfy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -11; + pixel_y = 16 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 4; + pixel_y = 16 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/medical_science) +"qfA" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/cichallway) +"qfD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"qfI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qfQ" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"qga" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/starboard_garden) +"qgn" = ( +/obj/item/stool, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"qgr" = ( +/obj/item/trash/plate{ + pixel_x = 9; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + layer = 3.3; + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + layer = 3.3; + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"qgK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/press{ + dir = 1; + name = "\improper Combat Correspondent Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/combat_correspondent) +"qgN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"qgU" = ( +/obj/structure/machinery/power/apc/almayer/hardened/south, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"qhb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/south1) +"qhg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"qhx" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access_txt = "5" + }, +/obj/item/clothing/accessory/stethoscope, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"qhD" = ( +/obj/structure/closet{ + name = "backpack storage" + }, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/grenadepack, +/obj/item/storage/backpack/marine/mortarpack, +/obj/item/storage/backpack/marine/mortarpack, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop/hangar) +"qhG" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"qhT" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"qhU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"qid" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"qig" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"qih" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Tanker Quarters"; + req_one_access_txt = "19;27" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/tankerbunks) +"qim" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"qit" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"qiy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"qjz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/lighter, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"qjF" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/computerlab) +"qjK" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/mp_bunks) +"qjL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qjN" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"qjV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"qjY" = ( +/obj/structure/machinery/door/window/eastleft{ + req_one_access_txt = "2;21" + }, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ROlobby1"; + name = "\improper RO Line 1" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/reinforced/almayer_blend/north, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = -8 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"qjZ" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/stern_point_defense) +"qki" = ( +/obj/effect/landmark/start/marine/smartgunner/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"qkP" = ( +/obj/item/frame/light_fixture{ + anchored = 1; + desc = "A broken fluorescent tube light."; + dir = 8; + icon_state = "tube-broken"; + name = "broken light fixture" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"qkY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -8; + pixel_y = -1 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 9 + }, +/obj/item/tool/pen{ + pixel_x = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"qlm" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qlp" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/prop/tableflag/uscm{ + pixel_x = -5 + }, +/obj/item/prop/tableflag/uscm2{ + pixel_x = 5 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"qlu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"qlz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "SEA Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/sea_office) +"qlI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"qlL" = ( +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"qmh" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/lower/repair_bay) +"qmk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/bluecorner/east, +/area/almayer/squads/delta) +"qmq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"qmy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_windoor"; + name = "Windoor Shutters"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "28" + }, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/sign/safety/biohazard{ + pixel_y = -32 + }, +/obj/structure/sign/safety/ref_bio_storage{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "researchlockdownext_se_2"; + name = "Window Shutters"; + pixel_x = -7; + pixel_y = 4; + req_access_txt = "28" + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) +"qmD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"qmK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/fore_hallway) +"qmM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"qmP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"qmR" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"qmU" = ( +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"qmW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"qmY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qnd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"qnh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"qni" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"qnl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"qnA" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"qnC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"qnD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Crew Chief's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"qnH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange, +/area/almayer/hallways/upper/midship_hallway) +"qnX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south2) +"qom" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda{ + density = 0; + pixel_x = 1; + pixel_y = 14; + wrenchable = 0 + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"qon" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"qoJ" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/squads/bravo) +"qoL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 8 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"qoM" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"qoN" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"qoR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qoY" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"qpx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/vents/scrubber, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/obj/item/storage/box/pillbottles, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"qpQ" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/chemistry) +"qpV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"qpY" = ( +/obj/structure/machinery/cryopod/right{ + dir = 4; + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"qqa" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"qqf" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qqn" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"qqr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m4a3_pistol, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"qqu" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/command/lifeboat) +"qqK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"qqQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/medical_science) +"qqS" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"qra" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"qrc" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"qrp" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qrv" = ( +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"qsp" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"qsC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"qsG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"qsL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/ce_room) +"qtv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"quj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"quq" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"quv" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/cryo_tubes) +"quJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"quS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"quT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc02"; + name = "\improper Treatment Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"quV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/bed/stool, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"qvh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/upper/midship_hallway) +"qvC" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"qvE" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"qvF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/maint/upper/u_a_s) +"qvI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"qvL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Weyland-Yutani Office" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/office/door, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"qwo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"qwp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"qwt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"qwL" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"qwS" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qwU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"qwY" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_s) +"qxe" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 3"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"qxm" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "W_Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/closed/wall/almayer/research/containment/wall/purple, +/area/almayer/medical/containment/cell) +"qxn" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"qxr" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"qxz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-5"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"qxC" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Alpha_1"; + name = "\improper Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"qxE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/biolab{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/water{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"qxI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"qxJ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qxL" = ( +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"qxP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"qxS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"qyi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"qyo" = ( +/turf/open/floor/almayer/blue/north, +/area/almayer/command/cichallway) +"qyA" = ( +/obj/structure/machinery/cm_vending/clothing/intelligence_officer{ + density = 0; + pixel_x = -32 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"qyD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"qyG" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" + }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) +"qyK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"qyP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"qyW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/squads/charlie_delta_shared) +"qyX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qyZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/view_objectives, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"qzc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_point_defense) +"qzA" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"qAs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"qAy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"qAA" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/ce_room) +"qAB" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"qAE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/medical_science) +"qAK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qAT" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/reagent_scanner{ + pixel_x = -16; + pixel_y = 5 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"qBl" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"qBq" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/commandbunks) +"qBM" = ( +/obj/item/storage/fancy/crayons{ + layer = 3.1; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/living/grunt_rnr) +"qBS" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"qCc" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qCo" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"qCy" = ( +/obj/effect/landmark/start/captain, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/bridgebunks) +"qCA" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution) +"qCG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"qCH" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Secretroom"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"qCU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 32; + pixel_y = -22 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"qDq" = ( +/obj/effect/landmark/start/marine/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"qDt" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Lifeboat Control Bubble"; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"qDB" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_a_p) +"qDP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/operating_room_four) +"qDS" = ( +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"qEk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/command/cic) +"qEl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"qEn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research{ + name = "\improper Research Hydroponics Workshop" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"qEy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/processing) +"qEz" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_y = -21; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"qEA" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 4"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"qEL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case/small{ + pixel_y = 5 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"qEM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"qFi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"qFu" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Cell Privacy Shutters"; + name = "\improper Cell Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cells) +"qFE" = ( +/obj/structure/machinery/brig_cell/cell_5{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"qFG" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"qFK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) +"qFS" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"qFX" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/mp_bunks) +"qGc" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha_bravo_shared) +"qGf" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/sign/safety/rewire{ + pixel_y = -38 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/lobby) +"qGw" = ( +/obj/structure/reagent_dispensers/ammoniatank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"qGC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"qGF" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_two) +"qGU" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/lifeboat_pumps/south2) +"qHe" = ( +/obj/structure/machinery/cryopod/right, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"qHg" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"qHq" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-6"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"qHD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"qHG" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"qHM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"qHT" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"qIf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qIx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/backdoor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"qIF" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/fore_hallway) +"qIL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/item/folder/white{ + pixel_x = 6 + }, +/obj/item/storage/fancy/vials/empty{ + pixel_y = 10; + start_vials = 2 + }, +/obj/item/tool/pen{ + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"qJf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/upper_engineering) +"qJj" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + pixel_x = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"qJo" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/perma) +"qJx" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"qJy" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/sign/safety/storage{ + pixel_x = 33; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/hydroponics) +"qJS" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -11; + pixel_y = -1 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"qJY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + layer = 3.1; + pixel_x = -12; + pixel_y = 14 + }, +/obj/item/toy/deck/uno{ + layer = 3.1; + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/toy/handcard/uno_reverse_yellow{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer/orange, +/area/almayer/living/port_emb) +"qJZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"qKb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/tubes{ + pixel_x = -8 + }, +/obj/item/storage/box/lights/tubes{ + pixel_x = 5 + }, +/obj/item/storage/box/lights/tubes{ + pixel_y = 10 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"qKi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/upper_engineering) +"qKl" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"qKz" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/securestorage) +"qKK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"qKY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"qKZ" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qLg" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/port) +"qLi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"qLk" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"qLs" = ( +/obj/effect/landmark/start/maint, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"qLt" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters/clippers, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/plantspray/weeds, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/almayer/green/southwest, +/area/almayer/shipboard/brig/cells) +"qLH" = ( +/obj/structure/bed/chair{ + buckling_y = 6; + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"qLS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qLV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/disk_reader, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"qLY" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qMo" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"qMu" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"qMD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"qMI" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-y" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"qMP" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"qMR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qNc" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "90;91;92" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build/ai_silver/east, +/area/almayer/command/airoom) +"qNd" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"qNI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"qNK" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"qNR" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"qOf" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"qOk" = ( +/obj/docking_port/stationary/lifeboat_dock/port, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/space/almayer/lifeboat_dock) +"qOp" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"qOS" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qOY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_p) +"qOZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"qPk" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qPn" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"qPD" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"qPE" = ( +/obj/structure/machinery/prop/almayer/CICmap, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/securestorage) +"qPS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"qPU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"qPX" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/red, +/area/almayer/command/lifeboat) +"qQc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"qQp" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"qQu" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"qQy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"qQD" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/intercom{ + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"qQS" = ( +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"qRb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qRd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qRj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/shipboard/brig/cic_hallway) +"qRr" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/cl/quarter/door, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"qRX" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"qSm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_point_defense) +"qSE" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/cholula, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"qSI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"qSK" = ( +/obj/item/stack/sheet/metal{ + layer = 2.9; + pixel_x = 4; + pixel_y = 21 + }, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"qSX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"qTi" = ( +/obj/structure/closet/crate, +/obj/item/ammo_box/magazine/l42a, +/obj/item/ammo_box/magazine/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"qTu" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"qTA" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"qTQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"qTS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"qTY" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"qUh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qUp" = ( +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"qUq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/charlie_delta_shared) +"qUu" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/fore_hallway) +"qUx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"qUz" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"qUK" = ( +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"qUL" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"qUO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"qUZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "MTline"; + name = "Next button"; + pixel_x = 5; + pixel_y = 10; + req_one_access_txt = "2;7" + }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"qVC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"qVE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"qVF" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"qVS" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/sign/safety/conference_room{ + pixel_x = -17 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"qWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"qWx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"qWI" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"qWK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/hallways/lower/port_midship_hallway) +"qWL" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qWQ" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"qWR" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 4 + }, +/area/almayer/medical/containment/cell/cl) +"qXk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"qXo" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"qXp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + pixel_x = 15 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"qXE" = ( +/obj/structure/machinery/brig_cell/perma_1{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"qXO" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = 5 + }, +/obj/item/reagent_container/food/snacks/mre_pack/xmas2{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/effect/landmark/map_item{ + layer = 3.03; + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"qXS" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/upper/port) +"qYd" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south2) +"qYq" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"qYr" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/obj/structure/catwalk{ + health = null + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"qYu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"qYz" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"qYC" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 4; + id = "almayerlink_OT_req" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"qYG" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/lifeboat) +"qYN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/deck, +/turf/open/floor/almayer/red/northeast, +/area/almayer/living/offices/flight) +"qYQ" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"qYZ" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qZy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"qZA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/chief_mp_office) +"qZF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/machinery/door_control{ + id = "perma_lockdown_1"; + name = "\improper Perma Cells Lockdown"; + pixel_x = -8; + pixel_y = -4; + req_access_txt = "3" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/perma) +"qZH" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/almayer/greenfull, +/area/almayer/living/offices) +"qZK" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"qZT" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"qZX" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"rae" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"raE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"raK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"raO" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"rbd" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rbp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rby" = ( +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Left"; + name = "ARES Mainframe Lockdown"; + pixel_x = 24; + pixel_y = -24; + req_one_access_txt = "200;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rbB" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/command/computerlab) +"rbF" = ( +/obj/effect/landmark/late_join, +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"rbH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"rbK" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"rbY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "crate_room"; + name = "\improper Storage Shutters" + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"rcx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"rcG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"rcS" = ( +/obj/structure/machinery/computer/cryopod/eng{ + dir = 8 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering) +"rde" = ( +/obj/structure/sign/prop1, +/turf/closed/wall/almayer, +/area/almayer/living/grunt_rnr) +"rdh" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"rdt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner4, +/area/almayer/medical/containment/cell) +"rdz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_s"; + id_tag = "cic_exterior"; + name = "\improper Combat Information Center" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"rdA" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -34 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"rdI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering) +"rdM" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"rdN" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"rdS" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"rdT" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"rdZ" = ( +/turf/open/floor/plating, +/area/almayer/command/corporateliaison) +"rec" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ren" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"reu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"reH" = ( +/obj/structure/noticeboard{ + pixel_x = -10; + pixel_y = 31 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/squads/req) +"reL" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"reM" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/maint/upper/mess) +"reN" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"rfa" = ( +/obj/effect/landmark/start/marine/medic/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"rfb" = ( +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 8; + icon_state = "containment_window_h" + }, +/area/almayer/medical/containment/cell/cl) +"rfB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"rfI" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"rfT" = ( +/obj/item/frame/camera{ + desc = "The Staff Officer insisted he needed to monitor everyone at all times."; + layer = 2.9; + name = "broken camera"; + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"rfY" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/cryo) +"rgt" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/port_umbilical) +"rgy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"rgK" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.5; + pixel_x = 5; + pixel_y = 14 + }, +/obj/item/attachable/bayonet{ + pixel_x = -14; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/auxiliary_officer_office) +"rgL" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) +"rgO" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"rgW" = ( +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/living/briefing) +"rhm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"rho" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/upper/midship_hallway) +"rht" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"rhy" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"rhD" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"rhO" = ( +/obj/structure/machinery/vending/cola/research{ + pixel_x = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"rhQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"rib" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"rir" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/s_bow) +"riB" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"riC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"riE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"riJ" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"riP" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/rewire{ + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"riT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"rjn" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"rjr" = ( +/turf/open/floor/almayer/silvercorner, +/area/almayer/hallways/upper/midship_hallway) +"rjF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"rjG" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"rjO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rjX" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"rka" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"rko" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"rkz" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"rkV" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/warden_office) +"rlc" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"rlf" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"rlh" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"rll" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rlD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/lower/repair_bay) +"rlJ" = ( +/obj/structure/platform/metal/almayer/east, +/obj/item/storage/firstaid/rad, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"rlQ" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"rlW" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/door_control/cl/office/evac{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/machinery/door_control/cl/quarter/windows{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"rlZ" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"rmc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/medical_science) +"rmf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/upper_engineering/starboard) +"rmk" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"rmo" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"rmx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/flash, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"rmz" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rmD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"rmE" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"rmG" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"rna" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rnF" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering Workshop" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop) +"rnH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/crew/alt{ + dir = 8; + pixel_x = 17 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"rnM" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"rnN" = ( +/turf/open/floor/almayer/greenfull, +/area/almayer/hallways/upper/fore_hallway) +"rob" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"roj" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"rou" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"roB" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"roG" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"roH" = ( +/obj/effect/step_trigger/ares_alert/terminals, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "ARES Operations Left"; + name = "\improper ARES Operations Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"roU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"rpp" = ( +/obj/effect/landmark/start/executive, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/bridgebunks) +"rpG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"rpK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"rpV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"rqb" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"rqj" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"rqv" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"rqz" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"rqD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"rqE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rqQ" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"rqS" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red{ + pixel_x = -4 + }, +/obj/item/folder/blue{ + pixel_x = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"rrh" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"rrq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"rrz" = ( +/obj/structure/sign/safety/four{ + pixel_x = -17 + }, +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 4"; + name = "Cell 4" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"rrB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"rrD" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/upper_medical) +"rrK" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"rrU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rsK" = ( +/obj/structure/sign/safety/hvac_old, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"rsL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_aft_hallway) +"rsM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"rsO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"rsP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"rsS" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = -25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"rsV" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rtc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/photo_album{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/folder/black{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/device/camera_film{ + pixel_x = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"rtd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"rth" = ( +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"rtt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular{ + pixel_y = 6 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -8 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/storage/box/wy_mre{ + pixel_x = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/corporateliaison) +"rtA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/pen{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"rtV" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"rtY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/bronze, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"rub" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"ruc" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"rui" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"rur" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"rux" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/hangar) +"ruz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"ruL" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/engineering/lower/workshop/hangar) +"rvA" = ( +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"rvI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"rvT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"rwe" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"rwj" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rwq" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = -26 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"rwv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"rwB" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"rwY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "pobunk2"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/living/pilotbunks) +"rwZ" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_p) +"rxc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"rxe" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"rxl" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit."; + icon_state = "delivery_engi"; + name = "Security Vault"; + pixel_x = -24; + pixel_y = 28 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -32; + pixel_y = 40; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"rxq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"rxK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"rxQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"ryn" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/command/securestorage) +"ryt" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"ryG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ryJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"ryY" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/down/almayer{ + dir = 1; + id = "almayerlink" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"rzy" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"rzN" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"rAb" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/living/briefing) +"rAo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"rAw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 8 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -7 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"rAx" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"rAC" = ( +/obj/docking_port/stationary/emergency_response/external/port5, +/turf/open/space/basic, +/area/space) +"rAD" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/weapon_room) +"rAN" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"rAP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"rAS" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"rAT" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"rBa" = ( +/obj/structure/machinery/cm_vending/clothing/synth, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"rBb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"rBj" = ( +/obj/structure/machinery/processor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"rBv" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"rBx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/stamp/ro{ + name = "spare requisitions officer's rubber stamp"; + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"rBD" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_m_p) +"rBY" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/item/tool/soap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"rCh" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"rCl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"rCD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"rCK" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"rCO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"rCZ" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"rDb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"rDe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = 33 + }, +/obj/item/toy/deck{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 9; + pixel_y = 12 + }, +/obj/item/ashtray/plastic{ + pixel_y = -4 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/squads/req) +"rDf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"rDr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/medical_science) +"rDt" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"rDv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"rDy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"rDH" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"rDO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"rDQ" = ( +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/cryo) +"rDR" = ( +/obj/structure/machinery/vending/coffee, +/obj/item/toy/bikehorn/rubberducky{ + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; + name = "Quackers"; + pixel_x = 5; + pixel_y = 17 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rDV" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"rEd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"rEf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"rEm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"rEr" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer3" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"rEt" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"rEv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rEK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"rEY" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"rFg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"rFs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/folder/black, +/obj/item/tool/pen, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"rFy" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/engineering/upper_engineering/starboard) +"rFH" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"rGc" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/gm/grass/grass1, +/area/almayer/medical/upper_medical) +"rGj" = ( +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"rGr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"rGz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"rGE" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + name = "\improper Conference Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CIC_Conference"; + name = "\improper CIC Conference Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"rGL" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/upper/mess) +"rHc" = ( +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"rHf" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"rHo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc01"; + name = "\improper Treatment Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"rHq" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"rHr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/starboard_aft_hallway) +"rHw" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rHz" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"rHB" = ( +/obj/item/ammo_box/magazine/misc/mre/empty{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 11; + pixel_y = -3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) +"rHN" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"rIj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + name = "\improper Medical Bay"; + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "medicalemergency"; + name = "\improper Medical Bay Lockdown" + }, +/obj/structure/machinery/door_control{ + id = "medicalemergency"; + name = "Medbay Lockdown"; + pixel_y = -23; + req_one_access_txt = "2;3;12;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"rIw" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"rID" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"rIH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"rIO" = ( +/obj/structure/machinery/vending/snack, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rIP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rIV" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"rIW" = ( +/obj/structure/machinery/cm_vending/gear/synth, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"rJf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"rJh" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + pixel_y = -2 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"rJj" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"rJu" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/living/briefing) +"rJx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta/blue{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie_delta_shared) +"rJD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/machinery/cm_vending/own_points/experimental_tools, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"rJK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"rKd" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/cic) +"rKn" = ( +/obj/structure/machinery/door_control{ + id = "agentshuttle"; + explo_proof = 1; + name = "Shutters"; + pixel_y = 25; + req_one_access_txt = "201"; + use_power = 0 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"rKt" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/port_aft_hallway) +"rKA" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"rKO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"rKQ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"rLk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"rLp" = ( +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 20 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"rLv" = ( +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4; + icon_state = "containment_window_h" + }, +/area/almayer/medical/containment/cell/cl) +"rLH" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/device/binoculars, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"rLK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"rLP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rLU" = ( +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"rMe" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"rMh" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"rMj" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"rMO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/s_bow) +"rMT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliaison) +"rNa" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/uscm{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/item/tool/pen/clicky{ + pixel_x = -13; + pixel_y = -1 + }, +/obj/item/tool/pen/clicky{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/structure/machinery/door_control{ + id = "CO-Office"; + name = "Door Control"; + normaldoorcontrol = 1; + pixel_y = 7; + req_access_txt = "31" + }, +/obj/item/ashtray/bronze{ + pixel_x = 12; + pixel_y = 1 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"rNb" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/machinery/door_control{ + id = "Alpha_2"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 23; + specialfunctions = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"rNd" = ( +/obj/effect/landmark/start/marine/engineer/delta, +/obj/effect/landmark/late_join/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"rNu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/recharge_station{ + layer = 2.9 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"rNK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"rOc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"rOs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/device/binoculars, +/obj/item/storage/bible, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"rOv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"rOz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"rOC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"rOI" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"rOJ" = ( +/obj/structure/barricade/handrail, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"rPq" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"rPt" = ( +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"rPE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rPF" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"rPO" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/item/facepaint/black{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/blue/southwest, +/area/almayer/squads/delta) +"rPQ" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Hallway" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"rQc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"rQs" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"rQt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rQw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"rQy" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/hydroponics) +"rQA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/delta) +"rQV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"rQW" = ( +/obj/item/tool/screwdriver, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"rRq" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/south2) +"rRz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"rRT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"rRU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/ashtray/glass{ + pixel_x = -6 + }, +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/weed{ + name = "cigarette"; + pixel_y = 7 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"rSj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/squads/alpha_bravo_shared) +"rSq" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/medical/upper_medical) +"rSx" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods/plasteel{ + amount = 36 + }, +/obj/item/stack/catwalk{ + amount = 60; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rSA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"rSG" = ( +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"rSH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"rSR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"rSW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"rTk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rTA" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rTJ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"rTZ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"rUh" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"rUi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"rUk" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"rUq" = ( +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"rUy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"rUN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"rVc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"rVt" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/part_fabricator/dropship, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"rVB" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"rVC" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"rVN" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/port_missiles) +"rWb" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"rWn" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMP Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/chief_mp_office) +"rWs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"rWv" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rWy" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"rWz" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) +"rWL" = ( +/obj/structure/barricade/metal, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"rWT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"rXd" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"rXj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"rXk" = ( +/obj/structure/barricade/plasteel/metal{ + dir = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"rXq" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_p) +"rXv" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"rXE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"rXF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"rXH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"rXQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"rXS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/delta{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/delta) +"rXT" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"rXU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"rYh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"rYi" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"rYp" = ( +/obj/effect/landmark/start/marine/medic/delta, +/obj/effect/landmark/late_join/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"rYv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/computer/station_alert{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"rYI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"rYJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices/flight) +"rYU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"rZt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"rZB" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_medbay) +"rZP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"rZZ" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"sab" = ( +/obj/effect/landmark/start/doctor, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"sai" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"saL" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + name = "Corporate Liaison's Closet" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"saX" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 8; + id = "almayerlink_med1_req" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"sbq" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"sbt" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "safe_armory"; + name = "\improper Hangar Armory Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"sbE" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"sbJ" = ( +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/powered/agent) +"sbP" = ( +/obj/effect/landmark/start/police, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/landmark/late_join/police, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"sbZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_umbilical) +"sco" = ( +/obj/structure/sign/prop1{ + layer = 3.1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"sct" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"scy" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"scz" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer5" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"scE" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"scH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"scN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"scX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"sdd" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"sdf" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"sdn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/double/blue{ + dir = 4; + light_color = "#a7dbc7" + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + pixel_y = 23; + pixel_x = -8; + density = 0 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/upper_medical) +"sdu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/medical_science) +"sdv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"sdC" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"sdO" = ( +/obj/structure/ladder{ + height = 1; + id = "med1" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/lower_medical_lobby) +"seL" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"sfz" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"sfA" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"sfT" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/port) +"sfV" = ( +/obj/structure/machinery/alarm/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"sgc" = ( +/obj/structure/closet/crate/freezer/cooler{ + pixel_x = -7 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_x = 10; + pixel_y = -4 + }, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/sign/safety/storage{ + pixel_x = -24 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"sgi" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/processing) +"sgj" = ( +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/storage/belt/medical/full, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/item/roller/medevac, +/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"sgm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = 10; + pixel_y = 14 + }, +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"sgs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"sgD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sgE" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 3"; + pixel_x = -24 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"sgH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"sgL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/port_midship_hallway) +"sgR" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/facepaint/green, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"sgU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"she" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"shh" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"sht" = ( +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"shC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"shL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"sij" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/red/north, +/area/almayer/lifeboat_pumps/south2) +"sin" = ( +/turf/open/floor/almayer/bluecorner, +/area/almayer/hallways/upper/midship_hallway) +"sir" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "panicroomback"; + name = "\improper Safe Room Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"sit" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"siy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/hallways/lower/port_midship_hallway) +"siC" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_fore_hallway) +"siN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Nitrogen Control Console" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"siT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"siW" = ( +/obj/structure/machinery/body_scanconsole, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"sje" = ( +/turf/open/floor/almayer/empty/vehicle_bay, +/area/almayer/hallways/lower/vehiclehangar) +"sjj" = ( +/obj/structure/machinery/keycard_auth{ + pixel_x = -7; + pixel_y = 25 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"sjr" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D1"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/lifeboat) +"sjz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"sjG" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"sjM" = ( +/obj/effect/landmark/start/reporter, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"skj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"skl" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/upper_medical) +"skn" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/sea_office) +"skC" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"skF" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/charlie_delta_shared) +"skL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"skR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/closet/secure_closet/cmdcabinet{ + desc = "A bulletproof cabinet containing communications equipment."; + name = "communications cabinet"; + pixel_y = 24; + req_access = null; + req_one_access_txt = "207;203" + }, +/obj/item/device/radio, +/obj/item/device/radio/listening_bug/radio_linked/wy, +/obj/item/device/radio/listening_bug/radio_linked/wy{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"sld" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"slf" = ( +/obj/structure/machinery/brig_cell/cell_6{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"slo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"slv" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"slF" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"smi" = ( +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"smw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"smA" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -16; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"smH" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"smU" = ( +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/panic) +"smW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"snb" = ( +/obj/structure/ladder{ + height = 1; + id = "cicladder3" + }, +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"sni" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/command/cic) +"snt" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"snw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"snx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"snE" = ( +/obj/structure/machinery/cryopod/right, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"snI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Delta Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Delta Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"snM" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/squads/req) +"snN" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"snR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"snX" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 16; + pixel_y = 27 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/shipboard/brig/processing) +"soq" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"sov" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"soA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"soK" = ( +/obj/item/storage/firstaid/fire/empty, +/obj/item/storage/firstaid/o2/empty, +/obj/item/storage/firstaid/rad/empty, +/obj/item/storage/firstaid/toxin/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_medbay) +"soP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"soT" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"soX" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"spd" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"spF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"spH" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"spK" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"spS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/emerald/west, +/area/almayer/squads/charlie) +"spT" = ( +/obj/structure/closet/crate{ + desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; + name = "special operations crate" + }, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"sqa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sqf" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/upper_medical) +"sqg" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) +"sql" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"sqo" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering) +"sqW" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/tomatoseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"srh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"srl" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"srO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"srR" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"srT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Evidence Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/evidence_storage) +"ssk" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"ssU" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/starboard) +"ssW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/guncabinet/red/cic_armory_shotgun, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"ssX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"ssZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"sta" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"str" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/obj/structure/catwalk{ + health = null + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"stu" = ( +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"sty" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"stO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/perma) +"stP" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"stR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sub" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"suy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"suH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_midship_hallway) +"suJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"suU" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"svf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"svl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"svq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"svt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green/southwest, +/area/almayer/hallways/lower/port_midship_hallway) +"svw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"svF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/effect/landmark/yautja_teleport, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"swn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"swt" = ( +/turf/open/floor/almayer/greencorner, +/area/almayer/living/grunt_rnr) +"swx" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"swE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/living/grunt_rnr) +"swG" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"swH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = 28 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + pixel_x = -17 + }, +/obj/item/device/flashlight/lamp, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"swM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"swN" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/blue, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"sxD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"sxE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/hallways/upper/port) +"sxS" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"sxW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/cichallway) +"syg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + closeOtherId = "astroladder_n"; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/navigation) +"syj" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"syp" = ( +/turf/open/floor/almayer/silver/southeast, +/area/almayer/maint/upper/u_m_p) +"syH" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"syO" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"szf" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/coatrack{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"szE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/offices) +"szG" = ( +/obj/item/stack/sheet/glass/reinforced{ + amount = 50 + }, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"szM" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"szO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"szU" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/numbertwobunks) +"sAc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"sAn" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"sAw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"sAz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/starboard) +"sAC" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/ce_room) +"sAD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"sAS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"sBg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"sBL" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"sBQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "briglobby"; + name = "\improper Brig Cells" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"sBY" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"sCg" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sCA" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sCD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = 13; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"sCI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/living/pilotbunks) +"sCQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"sCT" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_f_s) +"sCV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"sCW" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sDu" = ( +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"sDx" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"sDA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"sDD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"sDM" = ( +/turf/open/floor/almayer/blue/northwest, +/area/almayer/squads/delta) +"sEd" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"sEg" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"sEi" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/living/grunt_rnr) +"sEp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"sEq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"sEt" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/hallways/hangar) +"sEu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"sEz" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/starboard_hallway) +"sEK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"sEM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -12; + pixel_y = -28 + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4; + layer = 3.3; + pixel_x = -17 + }, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"sER" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"sEZ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 26 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/armory) +"sFf" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/starboard_missiles) +"sFu" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/starboard_hallway) +"sGh" = ( +/turf/open/floor/almayer/uscm/directional, +/area/almayer/command/lifeboat) +"sGw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_s) +"sGK" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"sGL" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"sGQ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"sGU" = ( +/obj/structure/mirror, +/turf/closed/wall/almayer, +/area/almayer/living/gym) +"sGZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/airoom) +"sHe" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sHm" = ( +/obj/structure/disposalpipe/up/almayer{ + id = "almayerlink_OT_req" + }, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"sHo" = ( +/obj/structure/pipes/unary/outlet_injector{ + dir = 8; + name = "Mixed Air Injector" + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 1; + pixel_y = -24 + }, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"sHp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"sHx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"sHC" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/upper/fore_hallway) +"sHI" = ( +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"sHM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/pilotbunks) +"sHY" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"sIr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"sIu" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"sIA" = ( +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/engineering/port_atmos) +"sII" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES ReceptStairs2"; + name = "\improper ARES Reception Stairway Shutters"; + plane = -7 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"sIR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"sIU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sJa" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = -26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"sJC" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sJI" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/aluminum{ + amount = 20 + }, +/obj/item/stack/sheet/copper{ + amount = 20; + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 3; + pixel_y = 4 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 5; + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"sJY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/living/port_emb) +"sKa" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/morgue) +"sKf" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"sKI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"sKM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"sKY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"sLk" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder4" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) +"sLq" = ( +/obj/structure/bed/sofa/south/white/right, +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"sLx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"sLA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"sLX" = ( +/turf/open/floor/almayer/emeraldcorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"sMu" = ( +/obj/item/trash/uscm_mre, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"sMM" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"sNb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"sNz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"sNI" = ( +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"sNL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sNO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"sNP" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"sNR" = ( +/turf/closed/wall/almayer/research/containment/wall/corner, +/area/almayer/medical/containment/cell/cl) +"sOi" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"sOr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_s) +"sOt" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"sOv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/door_control/cl/quarter/windows{ + pixel_x = 11; + pixel_y = 37 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"sOw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/basketball) +"sOx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/turf/open/floor/almayer/cargo/southwest, +/area/almayer/engineering/upper_engineering) +"sOD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"sOK" = ( +/obj/structure/disposalpipe/down/almayer{ + dir = 2; + id = "ares_vault_out"; + name = "wycomms" + }, +/turf/closed/wall/almayer/outer, +/area/almayer/command/airoom) +"sOL" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/maint/upper/mess) +"sOZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/paper_bin/wy{ + pixel_y = 8; + pixel_x = -7 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/pen{ + pixel_y = 4; + pixel_x = -8 + }, +/obj/item/folder/blue{ + pixel_y = 5; + pixel_x = 6 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"sPa" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/attachable/flashlight/grip, +/obj/item/ammo_box/magazine/l42a{ + pixel_y = 14 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"sPb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"sPc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"sPF" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"sPJ" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"sPY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"sQF" = ( +/turf/open/floor/almayer/red, +/area/almayer/shipboard/port_missiles) +"sQO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"sRZ" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/fore_hallway) +"sSa" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 2; + no_panel = 1; + not_weldable = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"sSc" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/tcomms, +/area/almayer/shipboard/weapon_room) +"sSj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"sSl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"sSC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/squads/delta) +"sSG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Charlie Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Charlie Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"sTd" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/living/basketball) +"sTm" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"sTo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/shipboard/brig/cic_hallway) +"sTU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"sTV" = ( +/obj/structure/machinery/power/apc/almayer/hardened/north{ + cell_type = /obj/item/cell/hyper + }, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"sUg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"sUi" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"sUj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/bluefull, +/area/almayer/squads/delta) +"sUk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"sUs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"sUE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"sUO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"sUS" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"sVc" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/orangeseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"sVv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/aft_hallway) +"sVT" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"sVV" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/starboard) +"sWb" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/fore_hallway) +"sWp" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"sWw" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"sWC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"sWW" = ( +/obj/structure/machinery/flasher{ + alpha = 1; + id = "Containment Cell 3"; + layer = 2.1; + name = "Mounted Flash"; + pixel_y = 30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"sXd" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/containment) +"sXq" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"sXt" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"sXw" = ( +/obj/effect/landmark/start/marine/engineer/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"sXB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"sXC" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"sXE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Auxiliary Support Officer's Room" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/auxiliary_officer_office) +"sXQ" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/appleseed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/shipboard/brig/cells) +"sYh" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"sYl" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/shipboard/brig/medical) +"sYr" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"sYD" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 + }, +/obj/structure/sign/safety/debark_lounge{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"sYP" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"sYT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"sYU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/upper/midship_hallway) +"sZc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"sZe" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_aft_hallway) +"sZq" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"sZs" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"sZy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"sZH" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 + }, +/obj/item/prop/magazine/boots/n054{ + pixel_x = 29 + }, +/obj/item/prop/magazine/dirty/torn{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/port_emb) +"sZY" = ( +/obj/structure/blocker/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"tab" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/restraint/handcuffs, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tan" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"tat" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"tau" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ + dir = 2; + name = "\improper Brig Permanent Confinement" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "perma_lockdown_1"; + name = "\improper Perma Lockdown Shutter" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"taw" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"taH" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + id = "Containment Cell 2"; + locked = 1; + name = "\improper Containment Cell 2" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/containment{ + dir = 4; + id = "Containment Cell 2"; + name = "\improper Containment Cell 2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"taI" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"taV" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/upper/starboard) +"tcd" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tcm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tcO" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"tcS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"tcZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/upper_engineering/port) +"tda" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security{ + access_modified = 1; + dir = 2; + name = "\improper Security Checkpoint"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/briefing) +"tdc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"tdf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/squads/delta) +"tdi" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tdv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/engine_core) +"tdy" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/lobby) +"tdE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"tdH" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/item/bedsheet/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"tdI" = ( +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"tdT" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"teg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"teo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"ter" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"tez" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"teE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"teY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"teZ" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsLower"; + name = "ARES Core Lockdown"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"tfb" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/starboard) +"tff" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/lobby) +"tfE" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"tfF" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/hallways/upper/midship_hallway) +"tfH" = ( +/obj/structure/machinery/light/containment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"tfQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"tfZ" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -7; + pixel_y = 17 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 12; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/starboard_hallway) +"tge" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"tgl" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"tgm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"tgy" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/lower/repair_bay) +"tgz" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"tgJ" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"tgK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"tgV" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_medbay) +"thc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/engine_core) +"thq" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"thv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/telecomms) +"thA" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/alpha_bravo_shared) +"thL" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"thN" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/hydroponics) +"thP" = ( +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"thV" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"tie" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/red/southeast, +/area/almayer/maint/upper/u_a_p) +"tig" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"tii" = ( +/obj/structure/machinery/firealarm{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/obj/structure/transmitter{ + name = "CE Office Telephone"; + phone_category = "Offices"; + phone_id = "CE Office"; + pixel_x = -8; + pixel_y = 29 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/ce_room) +"tim" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"tiE" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/req) +"tiF" = ( +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/chief_mp_office) +"tiI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/syringes, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"tiK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"tiR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/weapon_room) +"tiW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"tiX" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"tiY" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/newspaper, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"tjj" = ( +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"tjl" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"tjn" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"tjw" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"tjH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"tjO" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer/orange, +/area/almayer/maint/hull/lower/l_m_s) +"tkd" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/obj/structure/sign/safety/south{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"tkg" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"tkn" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"tkq" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"tkF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"tkN" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "15;16;21"; + vend_x_offset = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"tkR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/starboard) +"tld" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_x = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"tlk" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/general_equipment) +"tln" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tlp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + id = "Cell 4"; + name = "\improper Courtyard Divider" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"tlA" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"tlM" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/maint/upper/u_a_s) +"tmg" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/obj/item/reagent_container/hypospray, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"tml" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tmB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"tmE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"tmH" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/execution) +"tmQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"tmV" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - SecVault"; + dir = 8 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"tmX" = ( +/obj/effect/landmark/start/professor, +/obj/effect/landmark/late_join/cmo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"tnb" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"tne" = ( +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = -25; + pixel_y = 23 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tni" = ( +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/operating_room_three) +"tnz" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"tnY" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"tob" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"tof" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"tos" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"tot" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"tou" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/offices) +"tov" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"toD" = ( +/obj/structure/largecrate/supply/generator, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 2.9; + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"toO" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_construction, +/obj/item/folder/black_random, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"toQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"toS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" + }, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" + }, +/obj/item/desk_bell{ + anchored = 1; + pixel_x = -6; + pixel_y = 10 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_medbay) +"tpa" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"tpd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"tpn" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/evidence_storage) +"tpB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_fore_hallway) +"tpD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"tpG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"tpR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tqf" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"tqu" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES ReceptStairs1"; + name = "ARES Reception Shutters"; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"tqE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"tqG" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"tqO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/hallways/upper/port) +"tqQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"tqV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical/green, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"tra" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = null; + req_one_access_txt = "19;34;30" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_p) +"trb" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/south1) +"trh" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower) +"tru" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"trx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/midship_hallway) +"trB" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"trF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/storage/firstaid/adv{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/medical_science) +"trU" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen/blue/clicky{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/tool/pen/clicky{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tsa" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/obj/item/clothing/suit/chef/classic, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"tsn" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"tsr" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/upper/mess) +"tst" = ( +/obj/structure/machinery/cryopod/right, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"tsy" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"tsC" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Research Armory"; + name = "\improper Armory Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"tsE" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"tsM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"tsX" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/lobby) +"ttd" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/port) +"tte" = ( +/obj/structure/pipes/vents/pump/no_boom{ + welded = 1 + }, +/turf/open/floor/plating, +/area/almayer/powered/agent) +"ttB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"ttD" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"tuk" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/general_equipment) +"tul" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/brig/prison_uni, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"tuo" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"tup" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tuA" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/port_missiles) +"tuC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"tuJ" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/tool/shovel/spade{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"tuN" = ( +/turf/open/floor/almayer/orange, +/area/almayer/hallways/hangar) +"tuX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"tuZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/weapon_room) +"tvl" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tvt" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_s) +"tvw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"tvA" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"tvJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/brig/starboard_hallway) +"tvM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"tvN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"tvQ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"twp" = ( +/obj/structure/ladder{ + height = 1; + id = "AftStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"twB" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer2" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"twI" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/door_control{ + id = "bot_uniforms"; + name = "Uniform Vendor Lockdown"; + pixel_x = -24; + pixel_y = 18; + req_access_txt = "31" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"twQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"twW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"txf" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"txp" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"txy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"txE" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"txH" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"txS" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"txW" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"tyb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"tyo" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"tyC" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"tyD" = ( +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"tyK" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/shipboard/starboard_missiles) +"tzd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"tzr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"tzw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"tzx" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"tzF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/aft_hallway) +"tzL" = ( +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer/test_floor5, +/area/almayer/medical/hydroponics) +"tzO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"tzP" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"tAb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"tAq" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -5 + }, +/obj/item/clothing/head/helmet/space/compression/uscm, +/obj/item/cell/crap{ + pixel_x = 7 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"tAt" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown" + }, +/obj/effect/step_trigger/ares_alert/access_control, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + density = 0; + desc = "An outlet for the pneumatic delivery system."; + icon_state = "delivery_outlet"; + name = "returns outlet"; + pixel_x = -7; + pixel_y = 28; + range = 0 + }, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"tAL" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/pilotbunks) +"tAN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/squads/bravo) +"tAU" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"tAW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tBq" = ( +/obj/item/tool/crowbar, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"tBu" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/sentry_holder/almayer, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"tBP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/obj/item/tool/lighter, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/execution_storage) +"tBY" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"tCd" = ( +/obj/item/folder/red{ + desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; + name = "folder: 28"; + pixel_x = -4; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tCx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"tCC" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Reception Interior"; + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"tCH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + closeOtherId = "brignorth"; + dir = 2; + name = "\improper Brig Armoury"; + req_access = null; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"tCT" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"tDZ" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"tEd" = ( +/obj/structure/reagent_dispensers/acidtank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"tEi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"tEu" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"tEB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"tEC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"tEO" = ( +/obj/effect/landmark/start/marine/medic/charlie, +/obj/effect/landmark/late_join/charlie, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"tFe" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsUpper"; + name = "\improper ARES Core Shutters"; + plane = -7 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"tFJ" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"tFO" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/red/north, +/area/almayer/maint/upper/u_a_p) +"tFP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"tFS" = ( +/obj/structure/machinery/computer/supplycomp, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"tFW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/lifeboat_pumps/south1) +"tGd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_20" + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"tGh" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/lower_medical_lobby) +"tGi" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"tGj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"tGG" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/briefing) +"tGH" = ( +/obj/structure/sign/safety/restrictedarea, +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) +"tGS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"tGT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/poster/art{ + pixel_y = 32 + }, +/obj/structure/machinery/photocopier/wyphotocopier, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"tHk" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"tHr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/item/pizzabox/mushroom{ + pixel_y = 11 + }, +/obj/item/poster, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/shipboard/brig/cic_hallway) +"tHu" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer/silverfull, +/area/almayer/command/airoom) +"tHv" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/living/briefing) +"tHF" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"tHQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"tHS" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cells) +"tIa" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"tId" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/aicore/no_build/ai_cargo, +/area/almayer/command/airoom) +"tIe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/lower/engine_core) +"tIl" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"tIp" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Dorms" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/port_emb) +"tIu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"tIF" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tIK" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 4 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"tIN" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"tIQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"tIS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"tIX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"tJi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"tJm" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"tJq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"tJz" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"tJR" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/sign/safety/medical{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"tJV" = ( +/obj/structure/machinery/vending/hydronutrients, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"tKr" = ( +/obj/structure/machinery/cryopod/right{ + dir = 2 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"tKY" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"tLa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "firearm_storage_armory"; + name = "\improper Armory Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/armory) +"tLc" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/plants{ + pixel_x = -3 + }, +/obj/item/storage/bag/plants{ + pixel_x = 3 + }, +/obj/item/storage/bag/plants{ + pixel_y = -3 + }, +/obj/item/tool/scythe, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"tLZ" = ( +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tMc" = ( +/obj/structure/machinery/chem_master/industry_mixer, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower/workshop/hangar) +"tMi" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"tMU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tMW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tNw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"tNB" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"tNP" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"tNR" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"tNY" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"tOa" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"tOr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/hydroponics) +"tOu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"tOC" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"tON" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"tOW" = ( +/turf/open/floor/almayer/green/southwest, +/area/almayer/living/grunt_rnr) +"tPc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tPh" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"tPj" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + access_modified = 1; + name = "\improper Requisition's Office"; + req_one_access = null; + req_one_access_txt = "1;26" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tPm" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"tPD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"tPI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"tQd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"tQe" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tQi" = ( +/obj/effect/landmark/start/warrant, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/landmark/late_join/chief_police, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"tQL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"tQV" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south1) +"tRh" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"tRs" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/frame/light_fixture, +/obj/item/frame/light_fixture, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"tRD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/basketball) +"tSm" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -16 + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tSp" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"tSB" = ( +/turf/open/floor/almayer/orangecorner/north, +/area/almayer/living/briefing) +"tSF" = ( +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"tSX" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"tTk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"tTp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"tTu" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"tTC" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tTD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/uscm_mre, +/obj/item/storage/box/uscm_mre, +/obj/item/book/manual/chef_recipes, +/obj/structure/sign/safety/coffee{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/captain_mess) +"tTG" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"tTO" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/starboard_hallway) +"tTZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"tUh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"tUo" = ( +/obj/item/clipboard, +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"tUx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"tUK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"tUN" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "35" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"tUS" = ( +/obj/item/toy/beach_ball/holoball, +/obj/structure/holohoop{ + density = 0; + pixel_y = 29 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"tVh" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"tVq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha) +"tVx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"tVZ" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/hallways/lower/repair_bay) +"tWd" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tWi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"tWl" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_p) +"tWp" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"tWF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"tWL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/silver, +/area/almayer/hallways/lower/repair_bay) +"tWY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/upper_medical) +"tXa" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 + }, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"tXb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"tXc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"tXi" = ( +/obj/structure/machinery/conveyor_switch{ + id = "gym_2"; + name = "treadmill switch" + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"tXj" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/item/stack/sheet/mineral/plastic/small_stack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/obj/item/frame/rack, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"tXn" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tXo" = ( +/turf/open/floor/almayer/redcorner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"tXM" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"tXT" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"tYi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"tYr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"tYw" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = 28 + }, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"tYM" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"tYQ" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"tYV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"tYX" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/bridgebunks) +"tZc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"tZg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/port) +"tZZ" = ( +/obj/structure/machinery/cryopod, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"uac" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"uag" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/mess) +"uah" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"ual" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/corner_var1/east, +/area/almayer/medical/containment/cell) +"uay" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"uaA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"uaG" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"uaI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/processor{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"uaU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 11 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"uaV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"ubv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/fore_hallway) +"ubA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ubI" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black_random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tool/stamp{ + name = "Corporate Liaison's stamp"; + pixel_x = -8; + pixel_y = 6 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"ubQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ucp" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/starboard) +"ucw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"ucy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"ucz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/overwatch/almayer{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 15 + }, +/obj/structure/machinery/light, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Bravo Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Bravo Overwatch" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"udf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"udi" = ( +/turf/open/floor/almayer/red, +/area/almayer/living/briefing) +"udr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lower_medical_lobby) +"udv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/hallways/upper/fore_hallway) +"udx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"udG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"udK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"udR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"udZ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"ued" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"uek" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/magazine/boots/n117{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"uew" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"uey" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/obj/structure/medical_supply_link/green, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lockerroom) +"uez" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"ueG" = ( +/obj/item/bedsheet/orange, +/obj/structure/bed{ + icon_state = "psychbed" + }, +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30; + req_access = list(); + req_access_txt = "6" + }, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"ueJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"ueY" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"ueZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha) +"ufh" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ufx" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering) +"ufJ" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"ufL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"ugj" = ( +/turf/open/floor/almayer/orange/east, +/area/almayer/maint/hull/lower/l_m_s) +"ugo" = ( +/obj/item/tool/weldpack{ + pixel_y = 15 + }, +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"ugu" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ugw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner, +/area/almayer/shipboard/brig/starboard_hallway) +"ugJ" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"ugZ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"uhh" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"uhl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/almayer/living/offices) +"uhq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uhu" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/north1) +"uhA" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"uhE" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"uhM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"uhP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"uig" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"uiC" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/lower/engine_core) +"uiG" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/starboard) +"uiK" = ( +/obj/item/ammo_box/magazine/misc/mre, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"uiR" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/almayer/engineering/upper_engineering/starboard) +"uiT" = ( +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"uiZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + dir = 1; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cichallway) +"ujn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"ujz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"ujV" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"uky" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"ukC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"ukP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"ukV" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"uli" = ( +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"ulo" = ( +/obj/structure/toilet{ + dir = 8; + layer = 2.9; + pixel_y = 8 + }, +/obj/structure/window{ + layer = 2.95; + pixel_y = -2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/commandbunks) +"uly" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/squads/req) +"ulH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"ulZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"umk" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"umm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"ump" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"umy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"umI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/aft_hallway) +"umS" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"umW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/vending/cigarette/free{ + pixel_y = 16 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"unh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/item/tool/screwdriver, +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"uns" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/carrotseed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/green/northwest, +/area/almayer/shipboard/brig/cells) +"unx" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"unQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"unT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/crowbar, +/obj/item/clothing/head/headset{ + pixel_y = -7 + }, +/obj/item/storage/bible, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"uoi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"uoj" = ( +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"uol" = ( +/obj/structure/bed/sofa/south/white/left, +/obj/structure/platform/metal/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"uoA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/starboard_point_defense) +"uoH" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer/silver, +/area/almayer/command/computerlab) +"uoO" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"upM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"upO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/living/offices) +"upR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 7; + pixel_y = 25 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"upS" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"upW" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"uqd" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "W_Containment Cell 1"; + name = "Containment Lockdown"; + pixel_x = -7; + pixel_y = 1; + req_one_access_txt = "19;28" + }, +/obj/structure/machinery/door_display/research_cell{ + id = "Containment Cell 1"; + name = "Cell 1 Control"; + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"uqg" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"uqh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"uqo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"uqs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41a{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"uqA" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/squads/bravo) +"uqI" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"urk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/hallways/lower/starboard_umbilical) +"ury" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"urM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"urN" = ( +/obj/effect/landmark/start/marine/leader/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"usm" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"usq" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/panic) +"usu" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"usy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"usX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"usZ" = ( +/obj/structure/pipes/unary/outlet_injector, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"utn" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"uto" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/metal{ + amount = 50 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering) +"utp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"utK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"utX" = ( +/turf/closed/wall/almayer/research/containment/wall/connect_e2{ + icon_state = "containment_wall_connect_e" + }, +/area/almayer/medical/containment/cell) +"utZ" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/shipboard/brig/processing) +"uuj" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = -12; + pixel_y = 14 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"uul" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 14; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"uun" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"uuu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + layer = 2.7; + pixel_y = 2 + }, +/obj/structure/largecrate/random/case, +/obj/effect/spawner/prop_gun/m41aMK1{ + pixel_y = 7 + }, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -10; + pixel_y = 1 + }, +/obj/item/tool/screwdriver{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"uux" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock SU-1"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"uuD" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"uuI" = ( +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/port_midship_hallway) +"uuR" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"uuT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"uvh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_aft_hallway) +"uvp" = ( +/obj/structure/largecrate/supply, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"uvt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/living/bridgebunks) +"uvu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/squads/bravo) +"uvP" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"uvU" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item{ + pixel_x = 5 + }, +/obj/item/facepaint/black{ + pixel_x = -10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uvY" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/cells) +"uws" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/shipboard/port_missiles) +"uwt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uwv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room/notunnel) +"uwN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"uwZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"uxa" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"uxb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"uxl" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"uxp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/squads/charlie) +"uxC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"uxO" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal7"; + pixel_x = 16; + pixel_y = -16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"uxX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"uyd" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/starboard) +"uys" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/squads/req) +"uyC" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/south2) +"uyH" = ( +/turf/closed/wall/almayer/research/containment/wall/divide, +/area/almayer/medical/containment/cell) +"uyQ" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"uzv" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"uzy" = ( +/obj/item/reagent_container/glass/bucket, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"uzE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/ce_room) +"uAb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"uAj" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/port_missiles) +"uAl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/port) +"uAC" = ( +/obj/item/bedsheet/purple{ + layer = 3.2 + }, +/obj/item/bedsheet/purple{ + pixel_y = 13 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) +"uAK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/lower/engine_core) +"uAL" = ( +/obj/structure/bed/chair/wood/normal, +/obj/item/bedsheet/brown, +/obj/item/toy/plush/farwa, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"uAP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"uAW" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"uBi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"uBj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uBx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"uBG" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer/red, +/area/almayer/maint/upper/u_a_p) +"uBM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"uBN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"uBO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = -3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"uCh" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/living/grunt_rnr) +"uCt" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uCw" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"uCM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"uCR" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"uCW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"uDg" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_bow) +"uDn" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge2" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/navigation) +"uDA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"uDW" = ( +/obj/structure/machinery/cm_vending/clothing/tl/delta{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"uEO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"uFd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"uFf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" + }, +/obj/structure/platform/metal/almayer/east, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/lower/repair_bay) +"uFg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"uFo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 8; + req_access_txt = "8" + }, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"uFp" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"uFq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"uFv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uFH" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"uGc" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"uGf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"uGk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"uGN" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"uGQ" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"uGU" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"uHk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/cryo_cells) +"uHr" = ( +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south2) +"uHT" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"uIv" = ( +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"uIA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"uII" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"uIJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/red, +/area/almayer/squads/alpha) +"uIT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/alpha_bravo_shared) +"uJb" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"uJk" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer4" + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/space) +"uJM" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"uJU" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"uKd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"uKe" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"uKl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"uKH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"uKV" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/food_storage{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"uLc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"uLn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"uLE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/shipboard/brig/medical) +"uLG" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." + }, +/obj/item/reagent_container/food/snacks/mre_pack/xmas2, +/obj/item/reagent_container/food/snacks/mre_pack/xmas1, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"uLL" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"uMc" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/starboard) +"uMf" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"uMj" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/port_missiles) +"uMk" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 1 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"uMl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/squads/alpha) +"uMn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emerald, +/area/almayer/living/port_emb) +"uMS" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/squads/delta) +"uNf" = ( +/obj/structure/sign/safety/conference_room{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"uNg" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"uNp" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"uNq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower/workshop/hangar) +"uNz" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"uNB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uNM" = ( +/turf/open/floor/almayer/emeraldcorner/west, +/area/almayer/living/briefing) +"uNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/blue, +/area/almayer/living/basketball) +"uNQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"uNV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"uOh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"uOi" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south2) +"uOJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"uPr" = ( +/turf/open/floor/almayer/blue/northeast, +/area/almayer/living/basketball) +"uPE" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"uPI" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/transmitter/rotary{ + name = "AI Reception Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Reception" + }, +/turf/open/floor/almayer/no_build/ai_floors, +/area/almayer/command/airoom) +"uPP" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower) +"uPQ" = ( +/obj/item/weapon/dart/green, +/obj/structure/dartboard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"uPW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"uPX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"uQm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"uQo" = ( +/obj/structure/machinery/disposal, +/obj/item/reagent_container/food/drinks/cans/beer{ + layer = 3.3; + pixel_x = -4; + pixel_y = 15 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"uRo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"uRs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/command/lifeboat) +"uRt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/upper_medical) +"uRD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"uRM" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/red{ + layer = 3.2 + }, +/obj/item/bedsheet/medical{ + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"uRR" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/s_bow) +"uRY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/port) +"uSk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/upper/aft_hallway) +"uSH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = 12; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"uSS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/lockerroom) +"uSU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"uTk" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"uTl" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"uTs" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"uTv" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"uTE" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"uTN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"uTP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_aft_hallway) +"uTU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"uTV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"uTZ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering/port) +"uUe" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/upper_engineering/port) +"uUf" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -9; + pixel_y = -4 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_y = -2 + }, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/hallways/lower/repair_bay) +"uUi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"uUo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie) +"uUt" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/starboard_point_defense) +"uUu" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/perma) +"uUy" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"uUz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + dir = 4; + id = "engidorm"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"uUB" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -12; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = -14 + }, +/obj/structure/machinery/aicore_lockdown{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"uVc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/workshop) +"uVd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"uVh" = ( +/obj/structure/filingcabinet/seeds, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"uVp" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"uVv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"uVA" = ( +/turf/open/floor/almayer/silver/east, +/area/almayer/shipboard/brig/cic_hallway) +"uVD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/plating_striped/west, +/area/almayer/living/cryo_cells) +"uVV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"uVX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, +/turf/open/floor/almayer/plate, +/area/almayer/living/pilotbunks) +"uVY" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"uWc" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"uWj" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/north1) +"uWk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blue/northwest, +/area/almayer/hallways/upper/midship_hallway) +"uWm" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"uWV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"uWY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"uXf" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Hypersleep Access"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"uXj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell) +"uXk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/engine_core) +"uXm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"uXu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "Interrogation Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Interrogation" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/interrogation) +"uXy" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_2"; + name = "range shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"uXE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/upper/midship_hallway) +"uXL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/tcomms, +/area/almayer/engineering/upper_engineering/starboard) +"uXU" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"uYa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"uYd" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 12 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"uYg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"uYn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"uYH" = ( +/obj/effect/landmark/start/marine/medic/delta, +/obj/effect/landmark/late_join/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"uYM" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"uZm" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"uZo" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/living/port_emb) +"uZF" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"uZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"uZV" = ( +/obj/structure/reagent_dispensers/fueltank/gas/methane{ + anchored = 1 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"uZZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Basketball Court" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/basketball) +"vaq" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vaQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Medical Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"vaS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/mp_bunks) +"vaV" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vaZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"vbf" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vbo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigcells"; + name = "\improper Brig Prisoner Yard" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"vbB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"vbI" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"vbM" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northwest, +/area/almayer/squads/bravo) +"vbR" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/green/northeast, +/area/almayer/squads/req) +"vbS" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/morgue) +"vbU" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/midship_hallway) +"vbV" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"vbZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"vcm" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/perma) +"vcq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_lobby) +"vcu" = ( +/obj/effect/landmark/start/engineering, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"vcE" = ( +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"vcG" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"vcI" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vdl" = ( +/obj/structure/window/reinforced/ultra{ + pixel_y = -12 + }, +/obj/structure/bed/chair/bolted, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/plating_striped, +/area/almayer/shipboard/brig/execution) +"vdL" = ( +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"vdM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"vdO" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/machinery/cryo_cell{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vdR" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"vej" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"ven" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer/green, +/area/almayer/living/grunt_rnr) +"veq" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"veu" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"vfa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/emerald/southeast, +/area/almayer/squads/charlie) +"vfo" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-2"; + req_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/powered) +"vfx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/squads/bravo) +"vfP" = ( +/turf/open/floor/almayer/research/containment/corner/north, +/area/almayer/medical/containment/cell) +"vfS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vgi" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"vgn" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vgv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"vgw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/lower) +"vgx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/research, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/hydroponics) +"vgB" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/autoinjectors{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/device/mass_spectrometer{ + pixel_x = 8 + }, +/obj/item/storage/box/pillbottles{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_x = 8; + pixel_y = 10 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"vgD" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/command/lifeboat) +"vgO" = ( +/turf/closed/wall/almayer/research/containment/wall/east, +/area/almayer/medical/containment/cell) +"vhb" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/maint/upper/u_a_p) +"vhe" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vhw" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"vhA" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"vhR" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/squads/charlie) +"vhX" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"vif" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/chapel) +"vih" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"vil" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"vio" = ( +/obj/effect/landmark/start/marine/delta, +/obj/effect/landmark/late_join/delta, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"vit" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/operating_room_four) +"viu" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"viv" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/maint/upper/u_m_p) +"viB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/aicore, +/area/almayer/command/airoom) +"viJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/gym) +"viN" = ( +/turf/open/floor/almayer/mono, +/area/almayer/command/securestorage) +"viO" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/living/briefing) +"viS" = ( +/obj/effect/landmark/start/marine/engineer/bravo, +/obj/effect/landmark/late_join/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"vjb" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"vjg" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/port_missiles) +"vjv" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"vjB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"vjC" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + desc = "A matte gray coffee mug bearing the Weyland-Yutani logo on its front. Looks like someone spat in it."; + name = "dip cup"; + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"vjG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/hallways/lower/port_umbilical) +"vjK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"vjS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/lower/constr) +"vjT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/hallways/lower/port_umbilical) +"vjW" = ( +/obj/structure/reagent_dispensers/watertank{ + anchored = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"vka" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"vkb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "officers_mess"; + name = "Privacy Shutters"; + pixel_y = -19 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"vkp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/medical_science) +"vky" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/p_bow) +"vkE" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"vkI" = ( +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vkM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + dir = 1; + name = "\improper Brig Equipment" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/general_equipment) +"vkO" = ( +/obj/structure/closet, +/obj/item/stack/sheet/glass/large_stack, +/obj/item/device/lightreplacer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/rods{ + amount = 40 + }, +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/plate, +/area/almayer/maint/lower/s_bow) +"vkR" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"vlk" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"vln" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"vly" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"vlM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"vlO" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/yellow{ + pixel_y = 13 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/obj/item/toy/plush/barricade, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"vlX" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha_bravo_shared) +"vme" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"vml" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"vmq" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"vmE" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/engineering/lower) +"vmJ" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"vmN" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"vmP" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vmW" = ( +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/port_missiles) +"vno" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"vnD" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"vnM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"vnY" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"voj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/mono, +/area/almayer/hallways/upper/fore_hallway) +"vop" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silvercorner/west, +/area/almayer/hallways/lower/repair_bay) +"vor" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vou" = ( +/obj/structure/surface/rack{ + desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards." + }, +/obj/structure/machinery/light/small{ + dir = 4; + icon_state = "bulb-burned"; + status = 3 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag" + }, +/obj/item/prop{ + desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + layer = 2.78; + name = "circuit board"; + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/prop{ + desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + layer = 2.79; + name = "circuit board"; + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/lower_medical_medbay) +"voV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_n"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment) +"vpe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/workshop/hangar) +"vpf" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vpn" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"vpv" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 2 + }, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"vpH" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + layer = 3.3 + }, +/obj/item/desk_bell/ares{ + anchored = 1; + pixel_x = -5; + pixel_y = 14 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vpI" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"vpT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"vpV" = ( +/turf/open/floor/almayer/emerald/southwest, +/area/almayer/command/cic) +"vpW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vqc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Holding Cell" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"vqz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/lower/port_fore_hallway) +"vqC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"vqD" = ( +/obj/item/trash/candle, +/obj/item/tool/match/paper, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"vqI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + layer = 3.03; + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/stack/sheet/cardboard/small_stack{ + layer = 3.02; + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"vqK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/upper_engineering/starboard) +"vqL" = ( +/obj/item/clothing/under/shorts/black, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"vqW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/medical_science) +"vqY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"vqZ" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/sign/safety/biolab{ + pixel_x = -9; + pixel_y = 32 + }, +/obj/structure/sign/safety/biohazard{ + pixel_x = 25; + pixel_y = 32 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80; + pixel_y = 6 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"vra" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/charlie_delta_shared) +"vrx" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"vrI" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -18 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"vrJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Liasion's Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/corporateliaison) +"vrM" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/evidence_storage) +"vrR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Deck Waste Tank Control" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"vrW" = ( +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/briefing) +"vrZ" = ( +/obj/structure/largecrate/machine/bodyscanner, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"vsd" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_m_s) +"vse" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"vsf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vsh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"vsi" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"vsq" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"vsz" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"vsF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vta" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cichallway) +"vti" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vtm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/medical_science) +"vtr" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"vtx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"vtG" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"vtJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"vub" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/sea_office) +"vug" = ( +/obj/effect/landmark/start/marine/engineer/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"vuA" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"vuD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"vuF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + dir = 1; + name = "\improper Kitchen Hydroponics"; + req_one_access_txt = "30;19" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"vuG" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"vuL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/blue, +/area/almayer/squads/delta) +"vuV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"vuZ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/weapon_room) +"vvp" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/sign/safety/intercom{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"vvw" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/paper, +/obj/item/tool/pen{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"vvy" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 32 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"vvH" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"vvX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"vvY" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, +/obj/structure/bedsheetbin{ + pixel_x = 26; + pixel_y = 5 + }, +/obj/item/tool/soap/syndie, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"vwj" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"vwC" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"vwF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"vwI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"vwT" = ( +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/midship_hallway) +"vwU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"vwV" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/command/cic) +"vwW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"vwY" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"vxb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"vxu" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"vxG" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/shipboard/brig/chief_mp_office) +"vxK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"vxM" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/cryo) +"vxX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/wrench{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/storage/bible{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/storage/bible{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"vxY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vyg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vyh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_s) +"vyi" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/processing) +"vyp" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"vyr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vyu" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_lobby) +"vyB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"vyE" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_arrow/east, +/area/almayer/command/airoom) +"vyH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"vyI" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"vzi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vzj" = ( +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + name = "\improper Chief MP's Bedroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/chief_mp_office) +"vzk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"vzp" = ( +/turf/open/floor/almayer/research/containment/entrance, +/area/almayer/medical/containment/cell/cl) +"vzy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/redcorner/west, +/area/almayer/shipboard/brig/starboard_hallway) +"vzz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Garden" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/cells) +"vzB" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"vzK" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/ce_room) +"vzP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/spoon, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/item/tool/kitchen/utensil/fork, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "kitchen"; + name = "\improper Kitchen Shutters" + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"vAg" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"vAq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/hallways/hangar) +"vAx" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"vAz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"vAE" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"vAG" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"vAH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/port) +"vAI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vAQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagent_analyzer{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vBp" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ + dir = 1 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/living/briefing) +"vBC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"vBJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/device/whistle, +/obj/item/device/megaphone, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/chief_mp_office) +"vBU" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/squads/req) +"vCg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/suit_storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vCk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/hydroponics) +"vCt" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"vCv" = ( +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/midship_hallway) +"vCx" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer/silver, +/area/almayer/shipboard/brig/cic_hallway) +"vCy" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ + dir = 4 + }, +/turf/open/floor/almayer/green/west, +/area/almayer/shipboard/brig/cells) +"vCE" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"vCH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + autoname = 0; + c_tag = "AI - Primary Processors"; + dir = 4 + }, +/turf/open/floor/almayer/aicore/no_build/ai_floor2, +/area/almayer/command/airoom) +"vCO" = ( +/obj/effect/landmark/start/bridge, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/bridgebunks) +"vDa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/hydroponics) +"vDd" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Firing_Range_1"; + name = "range shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/living/cryo_cells) +"vDh" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"vDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"vDz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vDN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"vEf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"vEj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/effect/landmark/start/synthetic, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"vEr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/medical_science) +"vEv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vEx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 2; + name = "Morgue Waiting Room"; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"vEG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"vEH" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"vEI" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"vER" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/aft_hallway) +"vEV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/starboard) +"vFn" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vFp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"vFv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"vFw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"vFH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"vFI" = ( +/obj/structure/largecrate/random/secure, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"vGn" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/interrogation) +"vGz" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"vGA" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"vGG" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"vGI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/numbertwobunks) +"vGQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"vHa" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/ares_console{ + pixel_x = 9 + }, +/obj/structure/machinery/computer/view_objectives{ + pixel_x = -9 + }, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"vHh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/item/tool/warning_cone{ + layer = 3.6; + pixel_x = -16; + pixel_y = -9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"vHn" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_s) +"vHp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/prop/magazine/boots/n160{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/transmitter/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"vHq" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/port_emb) +"vHt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "CIC Lockdown"; + name = "CIC Lockdown"; + pixel_x = -7; + pixel_y = 9; + req_access_txt = "1" + }, +/obj/structure/machinery/door_control{ + id = "Hangar Lockdown"; + name = "Hangar Lockdown"; + pixel_x = -7; + pixel_y = 2; + req_access_txt = "1" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4; + icon_state = "exposed01-supply" + }, +/obj/structure/machinery/door_control{ + id = "bot_armory"; + name = "Armory Lockdown"; + pixel_x = -7; + pixel_y = -5; + req_one_access_txt = "1;4" + }, +/obj/structure/transmitter/rotary/no_dnd{ + name = "Combat Information Center Telephone"; + phone_category = "Command"; + phone_id = "Combat Information Center"; + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"vHO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"vHP" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"vHW" = ( +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"vIf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/upper_medical) +"vIg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_a_s) +"vIo" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_f_p) +"vIu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"vIZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"vJc" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/warden_office) +"vJg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/securestorage) +"vJo" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/red/southeast, +/area/almayer/shipboard/navigation) +"vJR" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) +"vJV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + pixel_y = -29 + }, +/turf/open/floor/almayer/orange, +/area/almayer/squads/bravo) +"vJZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"vKb" = ( +/obj/structure/machinery/smartfridge/chemistry{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_corner, +/area/almayer/medical/containment) +"vKe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vKr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigcells"; + dir = 1; + name = "\improper Brig Prison Yard And Offices" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/processing) +"vKB" = ( +/obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"vKI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"vLg" = ( +/obj/item/trash/uscm_mre, +/obj/structure/bed/chair/comfy/charlie, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vLj" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Medical Bay"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"vLp" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/hallways/lower/repair_bay) +"vLz" = ( +/obj/structure/machinery/door_control{ + id = "ARES Mainframe Right"; + name = "ARES Mainframe Lockdown"; + pixel_x = -24; + pixel_y = -24; + req_one_access_txt = "200;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vLA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"vMb" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"vMo" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_four) +"vMr" = ( +/obj/effect/landmark/start/otech, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"vMt" = ( +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"vMA" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"vME" = ( +/turf/open/floor/almayer/orange/northwest, +/area/almayer/engineering/upper_engineering/port) +"vMG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/iv_drip, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"vMI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"vMJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Brig Breakroom" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/mp_bunks) +"vMM" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"vMU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/redcorner/north, +/area/almayer/hallways/lower/port_fore_hallway) +"vNo" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_p) +"vNp" = ( +/obj/structure/sign/safety/three{ + pixel_x = -17 + }, +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 3"; + name = "Cell 3" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"vND" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"vNT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/starboard_hallway) +"vNW" = ( +/turf/open/floor/almayer/uscm/directional/northwest, +/area/almayer/command/cic) +"vOh" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"vOu" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser{ + pixel_y = 8 + }, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/mp_bunks) +"vOw" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"vOy" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/medical_science) +"vOG" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/obj/structure/largecrate/supply/ammo/pistol/half{ + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"vOM" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"vON" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vOP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/upper_medical) +"vOV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"vOY" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/mess) +"vOZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"vPf" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 2"; + name = "\improper cell shutter" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"vPm" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"vPv" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"vPw" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/ladder{ + height = 1; + id = "cicladder4" + }, +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"vPK" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_y = -26 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"vPM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vPR" = ( +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/engineering/lower/workshop/hangar) +"vPT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"vPU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform/metal/stair_cut/platform_right, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"vPW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"vQe" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/obj/structure/catwalk{ + health = null + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/stair_clone/upper) +"vQf" = ( +/turf/open/floor/almayer/silvercorner/north, +/area/almayer/command/securestorage) +"vQq" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"vQN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 16 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/upper_medical) +"vQR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"vRa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = -25 + }, +/obj/structure/sign/prop3{ + pixel_x = -32 + }, +/obj/structure/machinery/faxmachine/uscm{ + department = "SEA" + }, +/turf/open/floor/strata/faux_metal, +/area/almayer/shipboard/sea_office) +"vRb" = ( +/turf/open/floor/almayer/uscm/directional/southwest, +/area/almayer/command/cic) +"vRu" = ( +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/tool/hand_labeler{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/storage/box/matches, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/upper_engineering/starboard) +"vRA" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 96; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"vRR" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"vSl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"vSn" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/lower_medical_lobby) +"vSp" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"vSr" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/tool/wet_sign{ + pixel_y = 18 + }, +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vSE" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/upper_engineering/port) +"vSG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/chemistry) +"vSK" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/briefing) +"vSN" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"vSW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/delta) +"vTu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer/silver/northeast, +/area/almayer/command/cic) +"vTv" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." + }, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care." + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering) +"vTE" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"vTM" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"vTS" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"vTT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"vTX" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vUb" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"vUe" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"vUh" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"vUn" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/port) +"vUI" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/warden_office) +"vUJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"vUP" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/cic_hallway) +"vVb" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"vVd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"vVk" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/closed/wall/almayer/aicore/hull, +/area/almayer/command/airoom) +"vVs" = ( +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"vVu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"vVw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"vVy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vVI" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"vVW" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_lobby) +"vVZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"vWc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/normandy{ + layer = 3.5 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"vWs" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"vWt" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker/large, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 5 + }, +/obj/item/reagent_container/dropper, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_y = 12 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"vWA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = -5 + }, +/obj/item/prop/magazine/book/theartofwar, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"vWB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/trash/cigbutt{ + icon_state = "ucigbutt"; + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/tool/lighter/random{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/structure/sign/prop3{ + pixel_x = 28 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"vWG" = ( +/obj/structure/pipes/vents/pump, +/obj/item/tool/soap, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/cells) +"vWJ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"vXd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + id = "engidorm"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"vXf" = ( +/obj/structure/reagent_dispensers/pacidtank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"vXh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/aicore/glowing/no_build, +/area/almayer/command/airoom) +"vXo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"vXF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"vYd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"vYi" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + closeOtherId = "brigwarden"; + name = "\improper Warden's Office" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutter" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/warden_office) +"vYm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"vYt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"vYz" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker{ + pixel_x = 8 + }, +/obj/item/paper_bin/wy{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_y = -2 + }, +/obj/item/reagent_container/dropper{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/structure/machinery/biohazard_lockdown{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"vYC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"vYM" = ( +/turf/open/floor/almayer/plate, +/area/almayer/command/cichallway) +"vZb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 16; + pixel_y = 26 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"vZf" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8 + }, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower) +"vZt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer/redcorner, +/area/almayer/squads/alpha) +"vZv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"vZw" = ( +/turf/open/floor/almayer/research/containment/floor2, +/area/almayer/medical/containment/cell/cl) +"vZI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/upper/midship_hallway) +"vZJ" = ( +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/upper/fore_hallway) +"wac" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"wan" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/brown, +/turf/open/floor/almayer/green/west, +/area/almayer/living/offices) +"waD" = ( +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/operating_room_one) +"waJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/upper/port) +"waP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/upper/fore_hallway) +"wbu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"wby" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/upper/u_f_s) +"wbC" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"wbJ" = ( +/obj/structure/machinery/door_control/airlock{ + id = "n_engi"; + name = "Port Engi Airlock"; + pixel_x = 28; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"wbN" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wbO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/pilotbunks) +"wbP" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/operating_room_four) +"wbV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"wbX" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + pixel_y = 24 + }, +/obj/item/device/cotablet, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/cic) +"wcm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/lifeboat_pumps/south2) +"wct" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower) +"wcD" = ( +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"wcJ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/s_bow) +"wcN" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"wcR" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/cell/high, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"wdf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"wdh" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/almayer/silver/southwest, +/area/almayer/shipboard/brig/cic_hallway) +"wdv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/lower/engine_core) +"wdz" = ( +/obj/effect/landmark/start/marine/engineer/charlie, +/obj/effect/landmark/late_join/charlie, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"wdF" = ( +/turf/open/floor/almayer/no_build, +/area/almayer/shipboard/brig/processing) +"wdG" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_f_p) +"wdI" = ( +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"wdJ" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"wdQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"wdW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"web" = ( +/obj/structure/platform/metal/almayer, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/ashtray/plastic{ + layer = 3.4; + pixel_x = 4 + }, +/obj/structure/largecrate/random/case, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"wed" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"wee" = ( +/obj/effect/landmark/start/police, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/landmark/late_join/police, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"wei" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/hydroponics) +"wer" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"wex" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/floor/almayer/mono, +/area/almayer/living/pilotbunks) +"weC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"weD" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "dccbunk"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/living/pilotbunks) +"weR" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/cargo, +/area/almayer/living/offices) +"wfn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/engineering/lower/workshop/hangar) +"wfx" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"wfE" = ( +/turf/closed/wall/almayer, +/area/almayer/living/gym) +"wfZ" = ( +/obj/structure/desertdam/decals/road_edge{ + pixel_x = -12 + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -12 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"wga" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/briefing) +"wgf" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/stern_point_defense) +"wgk" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/cichallway) +"wgO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"wgR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"whc" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"whm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"whA" = ( +/turf/open/floor/almayer/uscm/directional, +/area/almayer/living/briefing) +"whB" = ( +/obj/structure/closet/firecloset, +/obj/structure/sign/safety/reception{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/bridge{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/cichallway) +"whF" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"whO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_s) +"whQ" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/storage/donut_box{ + pixel_y = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/warden_office) +"wid" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/p_bow) +"wiu" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3, +/area/almayer/command/airoom) +"wiz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"wiG" = ( +/obj/structure/sign/poster{ + pixel_x = -30; + pixel_y = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"wiI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/juicer{ + pixel_y = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"wiN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/east{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/silver/southeast, +/area/almayer/shipboard/brig/cic_hallway) +"wiO" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wiQ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"wiW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"wjq" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"wjv" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/upper_engineering) +"wjz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"wjC" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"wjL" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/repair_bay) +"wjQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) +"wjY" = ( +/obj/structure/closet/secure_closet/warrant_officer, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"wka" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"wkc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "8" + }, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lockerroom) +"wks" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"wky" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"wkA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wkH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/whistle{ + pixel_y = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"wkM" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES StairsLower"; + name = "\improper ARES Core Shutters"; + plane = -7 + }, +/obj/effect/step_trigger/ares_alert/public{ + alert_id = "AresStairs"; + alert_message = "Caution: Movement detected in ARES Core."; + cooldown_duration = 1200 + }, +/obj/structure/machinery/door/poddoor/almayer/blended/ai_lockdown/aicore, +/turf/open/floor/almayer/no_build/test_floor4, +/area/almayer/command/airoom) +"wkX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"wkZ" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north2) +"wlb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wlg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "Interrogation Shutters"; + name = "\improper Shutters"; + pixel_x = -6; + pixel_y = -6; + req_access_txt = "3" + }, +/obj/item/device/taperecorder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/interrogation) +"wlh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"wlr" = ( +/turf/open/floor/almayer/silver/northeast, +/area/almayer/hallways/upper/midship_hallway) +"wlD" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_umbilical) +"wlE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"wlK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"wmg" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/starboard_missiles) +"wmo" = ( +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/northeast, +/area/almayer/hallways/upper/fore_hallway) +"wmz" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"wmK" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer/silver/north, +/area/almayer/command/computerlab) +"wmP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"wmQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + dir = 2; + id_tag = "tc03"; + name = "\improper Treatment Center" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"wmT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 + }, +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer/cargo, +/area/almayer/living/bridgebunks) +"wnb" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/smg/m39{ + pixel_y = 6 + }, +/obj/item/weapon/gun/smg/m39{ + pixel_y = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"wnh" = ( +/obj/structure/window/framed/almayer/aicore/hull, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"wnw" = ( +/obj/structure/machinery/flasher{ + id = "Perma 2"; + pixel_y = 24 + }, +/obj/structure/machinery/camera/autoname/almayer/brig, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"wnL" = ( +/obj/item/stack/tile/carpet{ + amount = 12 + }, +/obj/structure/surface/rack, +/obj/item/tool/crowbar/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"wnY" = ( +/obj/item/tool/crowbar/red, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"woh" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"wos" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"woy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"woU" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_p) +"wpg" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"wpt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + closeOtherId = "ciclobby_s"; + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/command/cic) +"wpu" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"wpI" = ( +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"wpS" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower) +"wqc" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"wqh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wqr" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = 29 + }, +/obj/structure/filingcabinet, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"wqO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"wra" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"wrm" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -96; + vector_y = 65 + }, +/obj/structure/platform/metal/almayer/west, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"wrr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control/railings{ + pixel_y = 24 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/hallways/lower/vehiclehangar) +"wru" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"wrC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"wrI" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_p) +"wrN" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"wrT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/item/device/radio/marine, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"wrX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/upper/port) +"wse" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"wsh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/perma) +"wsl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"wsq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"wsw" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"wsz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"wsD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"wsR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"wsS" = ( +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wtk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"wtm" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wtn" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/item/storage/firstaid{ + pixel_x = -13; + pixel_y = 13 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_s) +"wty" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/squads/delta) +"wtD" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/p_bow) +"wtM" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"wtY" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/paper, +/obj/item/restraint/handcuffs, +/obj/item/clothing/mask/cigarette/cigar/classic, +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"wub" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"wud" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/engineering/lower/workshop) +"wuh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"wui" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/upper/u_m_p) +"wuk" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wup" = ( +/obj/structure/supply_drop/echo, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"wuq" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"wuB" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/lower/workshop) +"wuS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_a_s) +"wuT" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/starboard) +"wuU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie) +"wvb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer/plate, +/area/almayer/living/captain_mess) +"wvj" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south1) +"wvo" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"wvu" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/target{ + desc = "'Such an insult (referring to Canton) can only be repaid in American blood. Mark my words, this will happen'-Kolonel Ganbaatar UPP Armed Forces"; + name = "Kolonel Ganbaatar" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"wvE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/shipboard/brig/chief_mp_office) +"wvI" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/brig/perma) +"wvU" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/synthcloset) +"wvX" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 26 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/upper/midship_hallway) +"wwr" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"wwv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"wwE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"wwJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/upper_engineering) +"wwW" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/hidden{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/research/containment/floor2/west, +/area/almayer/medical/containment/cell/cl) +"wxc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"wxj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/starboard) +"wxp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wxq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/medical/lower_medical_medbay) +"wxu" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"wxy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_stern) +"wxD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"wxF" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + desc = "A bulletproof cabinet containing communications equipment."; + name = "communications cabinet"; + pixel_y = 24; + req_access = null; + req_one_access_txt = "3" + }, +/obj/item/device/radio/listening_bug/radio_linked/mp{ + pixel_y = 8 + }, +/obj/item/device/radio/listening_bug/radio_linked/mp, +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/brig/warden_office) +"wxU" = ( +/obj/item/ashtray/bronze{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 7; + pixel_y = 16 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/beach_ball/holoball{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"wyb" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wyt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"wyz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"wyG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/hull/lower/l_m_s) +"wyQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/aicore_lockdown, +/turf/open/floor/almayer/no_build/plating, +/area/almayer/command/airoom) +"wzy" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"wzJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"wzZ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Wheelchair Storage"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/lower_medical_medbay) +"wAE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"wAK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"wBr" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/north, +/area/almayer/squads/alpha) +"wBw" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wBI" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/starboard) +"wCe" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"wCi" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/medical/lockerroom) +"wCk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/ot{ + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"wCn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/blue, +/area/almayer/hallways/upper/fore_hallway) +"wCs" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wCI" = ( +/turf/open/floor/almayer/redcorner/east, +/area/almayer/living/briefing) +"wDg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/southwest, +/area/almayer/hallways/upper/starboard) +"wDq" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wDr" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stairs) +"wDs" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/sign/safety/terminal{ + pixel_x = -6; + pixel_y = -26 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 7; + pixel_y = -26 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 20; + pixel_y = -26 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"wDy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"wDC" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 5"; + name = "Cell 5" + }, +/obj/structure/sign/safety/five{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"wDG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"wDH" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/device/megaphone, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/upper_medical) +"wDJ" = ( +/turf/open/floor/almayer/emerald/north, +/area/almayer/squads/charlie_delta_shared) +"wDK" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/bravo) +"wDM" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/engineering/upper_engineering) +"wDP" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"wEd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/alpha) +"wEg" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "agentshuttle"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/almayer/powered/agent) +"wEq" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/almayer/red/northeast, +/area/almayer/lifeboat_pumps/south1) +"wEw" = ( +/obj/effect/landmark/start/pilot/dropship_pilot, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/pilotbunks) +"wEF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"wEI" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/clipboard{ + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"wEK" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"wFb" = ( +/turf/open/floor/almayer/sterile_green_corner/east, +/area/almayer/medical/lower_medical_medbay) +"wFi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"wFn" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/clothing/suit/storage/marine/light/vest, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/command/cic) +"wFs" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"wFz" = ( +/obj/item/prop{ + desc = "Predecessor to the M56 the M38 was known for its extreme reliability in the field. This particular M38D is fondly remembered for its stalwart defence of the hangar bay during the Arcturian commando raid of the USS Almayer on Io."; + icon = 'icons/turf/whiskeyoutpost.dmi'; + icon_state = "M56D_gun_e"; + layer = 3.1; + name = "\improper M38D heavy machine gun 'Bess'"; + pixel_x = -3; + pixel_y = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"wFB" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wFN" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"wFQ" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"wFR" = ( +/turf/open/floor/almayer, +/area/almayer/living/gym) +"wFX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"wGa" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"wGb" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"wGd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"wGe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"wGE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/marine/leader/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"wGX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/auxiliary_officer_office) +"wHj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/prop/ice_colony/tiger_rug{ + desc = "A beat up beer stained, incredibly garish, polyester tiger rug. No one knows how it got here. Written on the wash tag are the words 'From Thedus, with love <3', in Sharpie."; + icon_state = "HotlineAlt"; + layer = 2.9; + name = "Richard the tiger" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/emerald/northwest, +/area/almayer/living/port_emb) +"wHn" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"wHo" = ( +/turf/open/floor/almayer/emerald, +/area/almayer/living/briefing) +"wHp" = ( +/obj/structure/bed/sofa/vert/grey, +/obj/structure/bed/sofa/vert/grey{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"wHr" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"wIr" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = list(); + req_access_txt = "26" + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"wIu" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wIC" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/chief_mp_office) +"wIG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = 4 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -4 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"wIQ" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/shipboard/brig/cic_hallway) +"wIX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink" + }, +/turf/open/floor/almayer/green/east, +/area/almayer/hallways/lower/port_midship_hallway) +"wJb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/lower_medical_medbay) +"wJh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cryo) +"wJo" = ( +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/upper_medical) +"wJC" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"wJD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer/emerald/east, +/area/almayer/squads/charlie) +"wJH" = ( +/turf/closed/wall/almayer/research/containment/wall/east, +/area/almayer/medical/containment/cell/cl) +"wJI" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/aicore/no_build/ai_silver/west, +/area/almayer/command/airoom) +"wKb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"wKc" = ( +/obj/effect/decal/cleanable/vomit, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/port) +"wKm" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_aft_hallway) +"wKF" = ( +/obj/structure/machinery/power/apc/almayer/north{ + cell_type = /obj/item/cell/hyper + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"wKJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"wKL" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + closeOtherId = "containment_s"; + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"wKN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"wKP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/medical/containment) +"wLi" = ( +/obj/structure/machinery/door_control/airlock{ + id = "s_engi"; + name = "Starboard Engi Airlock"; + pixel_x = 28; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"wLm" = ( +/turf/open/floor/almayer/plating_striped/east, +/area/almayer/living/cryo_cells) +"wLy" = ( +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 + }, +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"wLC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/bridge{ + pixel_y = 32 + }, +/obj/structure/sign/safety/reception{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/fore_hallway) +"wLF" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + closeOtherId = "brigmed"; + name = "\improper Brig Medbay"; + req_access = null; + req_one_access = null; + req_one_access_txt = "20;3" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/medical) +"wLG" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/item/clothing/head/ushanka{ + layer = 3.3 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/port_emb) +"wLK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 12 + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"wLN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 8 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/containment) +"wLS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/starboard_hallway) +"wMl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/two{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wMv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/auxiliary_officer_office) +"wMB" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/test_floor5, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wMF" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_bow) +"wMG" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/alpha) +"wMI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"wMO" = ( +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/medical_science) +"wNl" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + layer = 3.2; + pixel_x = 4; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -10; + pixel_y = 1 + }, +/obj/item/reagent_container/food/snacks/grown/orange{ + layer = 3.3; + pixel_x = 1; + pixel_y = 13 + }, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = 8; + pixel_y = -3 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/living/port_emb) +"wNt" = ( +/turf/open/floor/almayer/redcorner/north, +/area/almayer/shipboard/brig/processing) +"wNz" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wNC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/upper/midship_hallway) +"wNG" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/lower/starboard_fore_hallway) +"wNS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"wOt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"wOK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"wPf" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/south1) +"wPi" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/hallways/lower/port_midship_hallway) +"wPz" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"wPC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/almayer/squads/charlie) +"wPF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer_network/vehicle{ + dir = 4 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/command/cichallway) +"wQh" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"wQu" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer/no_build/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"wQA" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/engineering/lower) +"wQD" = ( +/turf/open/floor/almayer/orange/southeast, +/area/almayer/engineering/lower/engine_core) +"wQI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_f_s) +"wRf" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/lower/port_umbilical) +"wRk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wRN" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/green, +/area/almayer/shipboard/brig/cells) +"wRO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"wRP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"wRT" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"wSm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"wSn" = ( +/turf/open/floor/almayer/dark_sterile, +/area/almayer/engineering/laundry) +"wSu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"wSB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"wSQ" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/hallways/lower/repair_bay) +"wSR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"wSV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"wSX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/living/grunt_rnr) +"wTd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/silver/northwest, +/area/almayer/command/securestorage) +"wTg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"wTm" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/living/briefing) +"wTn" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"wTu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer/orange/southwest, +/area/almayer/maint/upper/mess) +"wTw" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/squad{ + req_access = null; + req_one_access = null; + req_one_access_txt = "17;18;21"; + vend_y_offset = 0 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"wTB" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"wTM" = ( +/turf/closed/wall/almayer/research/containment/wall/south, +/area/almayer/medical/containment/cell) +"wTN" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"wUd" = ( +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"wUJ" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"wUK" = ( +/turf/open/floor/almayer/orangecorner/west, +/area/almayer/engineering/lower/workshop/hangar) +"wUP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"wUR" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer/blue/west, +/area/almayer/living/pilotbunks) +"wUX" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = -1; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/sliceable/cheesewheel/mature{ + pixel_x = 1; + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"wVh" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/warden_office) +"wVm" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"wVt" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"wVy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = -32 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/squads/charlie_delta_shared) +"wVA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"wVB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/bluefull, +/area/almayer/living/bridgebunks) +"wVN" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"wVW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/cic) +"wWg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"wWl" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Mixed Air Control" + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"wWm" = ( +/turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2, +/area/almayer/medical/containment/cell) +"wWq" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/clothing/suit/space/compression/uscm, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"wWt" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"wWz" = ( +/turf/closed/wall/almayer/research/containment/wall/north, +/area/almayer/medical/containment/cell) +"wWC" = ( +/turf/open/floor/almayer/blue/southwest, +/area/almayer/living/pilotbunks) +"wWP" = ( +/obj/structure/prop/cash_register/broken, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer/test_floor5, +/area/almayer/squads/req) +"wWR" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"wWX" = ( +/obj/effect/landmark/start/marine/engineer/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"wXh" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"wXo" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"wXz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/starboard_hallway) +"wXH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"wXI" = ( +/turf/open/floor/almayer/greencorner/north, +/area/almayer/living/grunt_rnr) +"wXJ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"wXT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Storage" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/hallways/hangar) +"wYa" = ( +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north2) +"wYd" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"wYr" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"wYA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"wYG" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/lower/l_m_s) +"wYK" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_lobby) +"wYS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/lower_medical_medbay) +"wYY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CE Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/ce_room) +"wZv" = ( +/obj/structure/prop/invuln{ + desc = "An inflated membrane. This one is puncture proof. Wow!"; + icon = 'icons/obj/items/inflatable.dmi'; + icon_state = "wall"; + name = "umbilical wall" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/almayer/engineering/upper_engineering/port) +"wZE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_four) +"wZL" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"wZX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"xac" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/hallways/upper/midship_hallway) +"xad" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/port_point_defense) +"xas" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_bow) +"xaC" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/reagent_container/food/snacks/mre_pack/meal5{ + desc = "How long has this been sitting here?"; + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"xaM" = ( +/obj/structure/surface/table/almayer, +/obj/item/newspaper{ + name = "character sheet"; + pixel_x = -6 + }, +/obj/item/newspaper{ + name = "character sheet"; + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/toy/dice/d20, +/obj/item/toy/crayon/blue{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"xaN" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/knife, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 7 + }, +/obj/item/tool/kitchen/utensil/spoon{ + pixel_x = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xaS" = ( +/turf/open/floor/almayer/uscm/directional/northeast, +/area/almayer/command/lifeboat) +"xba" = ( +/turf/closed/wall/almayer/reinforced/temphull, +/area/almayer/living/cryo_cells) +"xbd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xbg" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xbk" = ( +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"xbI" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xcI" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"xcV" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"xdf" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"xdx" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/item/storage/firstaid/regular/empty, +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = -6 + }, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lower_medical_medbay) +"xdA" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/faxmachine/uscm/command{ + density = 0; + department = "AI Core"; + pixel_y = 32 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xdJ" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/execution) +"xdP" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/uscm_mre, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp{ + layer = 3.3; + pixel_x = 15 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/grape{ + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"xdS" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 12; + pixel_x = 2 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/upper_medical) +"xee" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"xef" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/structure/machinery/keycard_auth{ + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 26 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"xer" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xeU" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Laundry Room"; + req_access = list(); + req_one_access = list(19,7) + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/laundry) +"xeW" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xfm" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/cafeteria_officer) +"xfq" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xfr" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/almayer/red/southeast, +/area/almayer/lifeboat_pumps/south1) +"xfK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/transmitter{ + name = "Kitchen Telephone"; + phone_category = "Almayer"; + phone_id = "Kitchen"; + pixel_x = -8; + pixel_y = 29 + }, +/obj/structure/machinery/vending/ingredients, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xfO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/living/bridgebunks) +"xfT" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/sterile_green_corner/west, +/area/almayer/medical/operating_room_one) +"xga" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/aft_hallway) +"xgh" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer/sterile_green, +/area/almayer/medical/lower_medical_lobby) +"xgk" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xgm" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"xgr" = ( +/obj/structure/ladder{ + height = 1; + id = "AftPortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"xgw" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"xgJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/obj/structure/medical_supply_link, +/turf/open/floor/almayer/sterile_green_side/north, +/area/almayer/medical/lockerroom) +"xgN" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/holidays/string_lights{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xgP" = ( +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/upper_medical) +"xgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xhn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"xhx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"xhO" = ( +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xhQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"xhU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/starboard_hallway) +"xhW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xhZ" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"xik" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/item/toy/inflatable_duck, +/obj/structure/window/reinforced, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"xiu" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/upper_medical) +"xiH" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_s) +"xiP" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"xiQ" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"xiU" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/glass/fertilizer/ez, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/tool/plantspray/weeds, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"xiV" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_bow) +"xiW" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_a_p) +"xjb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + access_modified = 1; + name = "\improper Main Kitchen"; + req_one_access_txt = "30;19" + }, +/turf/open/floor/prison/kitchen, +/area/almayer/living/grunt_rnr) +"xjt" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/card{ + dir = 4; + pixel_x = 2 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"xjz" = ( +/turf/open/floor/almayer/plating_striped, +/area/almayer/command/lifeboat) +"xjD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"xjF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = 3; + pixel_y = 27 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 15; + pixel_y = 27 + }, +/obj/structure/machinery/computer/cameras/almayer_brig{ + desc = "Used to access the various cameras in the security brig."; + dir = 4; + name = "brig cameras console" + }, +/turf/open/floor/almayer/red/west, +/area/almayer/shipboard/brig/processing) +"xjK" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xjW" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"xka" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"xkb" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xkc" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"xkd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/cells) +"xkB" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xkN" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/east, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xlk" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"xlC" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orangecorner/east, +/area/almayer/engineering/ce_room) +"xlO" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"xmg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/almayer/silverfull, +/area/almayer/shipboard/brig/cic_hallway) +"xmn" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"xmJ" = ( +/obj/structure/closet, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/port_emb) +"xmP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/orangecorner, +/area/almayer/hallways/upper/aft_hallway) +"xmT" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"xnh" = ( +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"xnz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/red/northeast, +/area/almayer/command/lifeboat) +"xnI" = ( +/obj/effect/landmark/start/requisition, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"xnX" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"xnZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/hangar{ + dir = 8; + pixel_y = -12 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 8; + name = "Remote dropship navigation computer"; + pixel_y = 12; + shuttleId = "dropship_alamo" + }, +/turf/open/floor/almayer/redfull, +/area/almayer/living/offices/flight) +"xoe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = -29 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/squads/delta) +"xoj" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop) +"xos" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xoB" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_s) +"xoJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/port_point_defense) +"xoO" = ( +/turf/open/floor/almayer/orange/southwest, +/area/almayer/engineering/upper_engineering/port) +"xpc" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xpi" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"xpl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/four{ + pixel_x = 31; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/hallways/lower/port_midship_hallway) +"xpw" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/shipboard/brig/medical) +"xpL" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"xpT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xqh" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"xqp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal/delivery{ + density = 0; + desc = "A pneumatic delivery unit. Sends items to the requisitions."; + icon_state = "delivery_med"; + name = "Requisitions Delivery Unit"; + pixel_y = 28 + }, +/obj/structure/machinery/xenoanalyzer, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xqv" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer/sterile_green_side/northeast, +/area/almayer/medical/lower_medical_lobby) +"xqy" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "or4privacyshutter"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/medical/operating_room_four) +"xqD" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = -17 + }, +/turf/closed/wall/almayer, +/area/almayer/command/securestorage) +"xrg" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"xrq" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/cargo, +/area/almayer/command/lifeboat) +"xrt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 12; + pixel_y = -24 + }, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/chief_mp_office) +"xry" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"xrC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/greencorner/north, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xrI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower/workshop) +"xsi" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp2"; + vector_x = -102; + vector_y = 61 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xsl" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering) +"xss" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"xsv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xsw" = ( +/turf/open/floor/almayer/sterile_green_side/southeast, +/area/almayer/medical/lower_medical_medbay) +"xsz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/photocopier{ + layer = 2.9 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/medical/upper_medical) +"xsQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart/green, +/obj/item/weapon/dart/green, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xtM" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/sterile_green_side/east, +/area/almayer/medical/lower_medical_lobby) +"xtT" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"xub" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"xuc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"xud" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xui" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"xur" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer/sterile_green_side/southwest, +/area/almayer/medical/morgue) +"xuy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer/red/northwest, +/area/almayer/hallways/lower/port_fore_hallway) +"xuE" = ( +/obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ + dir = 1; + id = "Containment Cell 5"; + locked = 1; + name = "\improper Containment Cell 5" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Containment Cell 5"; + name = "\improper Containment Cell 5"; + unacidable = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/test_floor4, +/area/almayer/medical/containment/cell) +"xuQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"xuY" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"xuZ" = ( +/turf/open/floor/almayer/silver/west, +/area/almayer/shipboard/brig/cic_hallway) +"xvE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/charlie) +"xvQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 8 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"xvX" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer/plate, +/area/almayer/squads/bravo) +"xwd" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xwl" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer/cargo_arrow, +/area/almayer/squads/alpha_bravo_shared) +"xwm" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_fore_hallway) +"xwp" = ( +/obj/item/storage/box/matches{ + pixel_x = -11; + pixel_y = -3 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/item/reagent_container/food/drinks/cans/dr_gibb{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xwE" = ( +/obj/structure/bed/chair/comfy/alpha, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xwU" = ( +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 1; + vent_tag = "Comms" + }, +/turf/open/floor/almayer/aicore/no_build/ai_plates, +/area/almayer/command/airoom) +"xwX" = ( +/turf/open/floor/almayer/red/northwest, +/area/almayer/lifeboat_pumps/south2) +"xxa" = ( +/obj/item/stack/sheet/cardboard{ + amount = 50 + }, +/obj/structure/surface/rack, +/obj/item/packageWrap, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"xxh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/prop/magazine/boots/n160{ + layer = 2.8; + pixel_x = 4; + pixel_y = -8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/living/commandbunks) +"xxi" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"xxm" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/item/clothing/shoes/marine{ + layer = 4.1; + pixel_x = -5; + pixel_y = 20 + }, +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = 3; + pixel_y = 16 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/red{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"xxB" = ( +/obj/structure/machinery/fuelpump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"xxG" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/largecrate/random/barrel/red, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -2; + pixel_y = 16 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xxI" = ( +/obj/structure/cargo_container/wy/mid, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = -22; + pixel_y = 3; + serial_number = 11 + }, +/obj/structure/sign/poster{ + desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; + icon_state = "poster12"; + name = "Beach Babe Pinup"; + pixel_x = 6; + pixel_y = 8; + serial_number = 12 + }, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + name = "'Miss July' Pinup"; + serial_number = 16 + }, +/obj/structure/sign/poster{ + desc = "Koorlander Golds, lovingly machine rolled for YOUR pleasure."; + icon_state = "poster10"; + name = "Koorlander Gold Poster"; + pixel_x = 29; + pixel_y = 6; + serial_number = 10 + }, +/obj/structure/bed/chair{ + dir = 1; + pixel_y = 42 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xxZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"xyf" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"xyk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"xyp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/hallways/upper/midship_hallway) +"xyt" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/item/folder/white{ + layer = 2.9; + pixel_x = -8 + }, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"xyw" = ( +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xyB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/port) +"xyL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south2) +"xyN" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/execution_storage) +"xyQ" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/lower/repair_bay) +"xyY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/east, +/area/almayer/squads/req) +"xyZ" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"xzf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer/blue/southeast, +/area/almayer/living/basketball) +"xzh" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) +"xzx" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"xzB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"xzI" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/hallways/lower/port_midship_hallway) +"xAe" = ( +/turf/closed/wall/almayer/research/containment/wall/corner, +/area/almayer/medical/containment/cell) +"xAt" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 + }, +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"xAu" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"xAB" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/clipboard, +/turf/open/floor/almayer/green/southwest, +/area/almayer/squads/req) +"xAY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"xBe" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/upper_engineering) +"xBn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ + id_tag = "Boat1-D3"; + linked_dock = "almayer-lifeboat1"; + throw_dir = 1 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/port) +"xBr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xBK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/cargo, +/area/almayer/maint/hull/upper/u_f_p) +"xBQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"xBS" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_s) +"xBV" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/almayer/squads/req) +"xBW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_f_s) +"xBY" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/laundry) +"xCa" = ( +/obj/structure/closet/coffin/woodencrate, +/obj/item/frame/table/wood/poor, +/obj/item/frame/table/wood/poor, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"xCb" = ( +/obj/structure/closet/secure_closet/fridge/dry, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xCf" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliaison) +"xCs" = ( +/turf/open/floor/almayer/silver/southwest, +/area/almayer/hallways/upper/midship_hallway) +"xCy" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xCB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/fore_hallway) +"xDd" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/engineering/lower/engine_core) +"xDe" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer/no_build, +/area/almayer/hallways/upper/port) +"xDn" = ( +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"xDy" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer/test_floor4, +/area/almayer/maint/upper/u_f_p) +"xDC" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xDF" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"xDV" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/red/north, +/area/almayer/hallways/upper/port) +"xEe" = ( +/obj/structure/prop/invuln/joey, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"xEs" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"xEz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer/sterile_green_side/west, +/area/almayer/medical/operating_room_two) +"xEO" = ( +/turf/open/floor/prison/kitchen, +/area/almayer/engineering/upper_engineering) +"xEX" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/almayer/living/offices) +"xFt" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"xFx" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"xFP" = ( +/turf/open/floor/almayer/red/northeast, +/area/almayer/shipboard/starboard_missiles) +"xFZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/gym) +"xGh" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/turf/open/floor/almayer/green/north, +/area/almayer/shipboard/brig/cells) +"xGo" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"xGE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/bravo) +"xGF" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_f_p) +"xGI" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_m_s) +"xGJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_x = -13 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/living/briefing) +"xGK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/lights/tubes{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xGT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xHa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"xHl" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"xHp" = ( +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) +"xHt" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Engineering Storage"; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering) +"xHS" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/workshop/hangar) +"xHX" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/p_bow) +"xId" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/he, +/obj/item/mortar_shell/he, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/req) +"xIj" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"xIk" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/medical/lower_medical_medbay) +"xIq" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/evidence_storage) +"xIu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -14; + pixel_y = 28 + }, +/turf/open/floor/almayer/red/east, +/area/almayer/shipboard/brig/processing) +"xIQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"xIV" = ( +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) +"xIW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/poster, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"xJe" = ( +/turf/open/floor/almayer/greencorner/west, +/area/almayer/shipboard/brig/cells) +"xJh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"xJp" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"xJH" = ( +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie_delta_shared) +"xJR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"xJT" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"xJV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/engineering/lower) +"xKs" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/red, +/area/almayer/lifeboat_pumps/north1) +"xKG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "Under Construction Shutters"; + name = "shutter-control"; + pixel_x = -25 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xKM" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/starboard) +"xKT" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"xLi" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/item/paper_bin/uscm{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xLl" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/shipboard/brig/general_equipment) +"xLn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/s_stern) +"xLu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"xLw" = ( +/turf/open/floor/almayer/silver, +/area/almayer/hallways/upper/midship_hallway) +"xLX" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_midship_hallway) +"xMf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_point_defense) +"xMj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/sterile_green_side, +/area/almayer/medical/lower_medical_medbay) +"xMl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"xMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_a_p) +"xMs" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_two) +"xMy" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/north2) +"xMz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/hallways/upper/starboard) +"xMA" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/cic) +"xMB" = ( +/turf/open/floor/almayer/uscm/directional/southeast, +/area/almayer/command/cic) +"xMG" = ( +/obj/structure/machinery/door_control{ + id = "OuterShutter"; + name = "Outer Shutter"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;3" + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "OfficeSafeRoom"; + name = "Office Safe Room"; + pixel_x = 5; + pixel_y = 5; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer/plate, +/area/almayer/shipboard/panic) +"xML" = ( +/obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/green/north, +/area/almayer/living/grunt_rnr) +"xMO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/starboard) +"xMR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"xNb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xNf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower/engine_core) +"xNg" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/lower) +"xNj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/hangar) +"xNu" = ( +/obj/structure/flora/bush/ausbushes/lavendergrass, +/turf/open/gm/grass/grass1, +/area/almayer/medical/upper_medical) +"xNv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer/silver/east, +/area/almayer/command/computerlab) +"xNz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave{ + pixel_y = 7 + }, +/obj/item/storage/box/cups{ + pixel_x = 3 + }, +/obj/item/storage/box/donkpockets{ + pixel_y = 19 + }, +/turf/open/floor/almayer/plate, +/area/almayer/living/auxiliary_officer_office) +"xNM" = ( +/obj/structure/machinery/cm_vending/gear/vehicle_crew, +/turf/open/floor/almayer/cargo, +/area/almayer/hallways/lower/vehiclehangar) +"xOs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/turf/open/floor/almayer/dark_sterile, +/area/almayer/command/corporateliaison) +"xOw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/obj/item/tool/warning_cone, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xOL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"xOT" = ( +/obj/structure/closet/secure_closet/fridge/meat/stock, +/turf/open/floor/almayer/plate, +/area/almayer/living/grunt_rnr) +"xOY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/corner/east, +/area/almayer/medical/containment/cell) +"xPq" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/turf/open/floor/almayer/orange/north, +/area/almayer/engineering/lower/workshop/hangar) +"xPZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/orange/northeast, +/area/almayer/engineering/upper_engineering/port) +"xQa" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"xQd" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_p) +"xQe" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_a_p) +"xQg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer/bluecorner/west, +/area/almayer/living/pilotbunks) +"xQj" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xQm" = ( +/turf/open/floor/almayer/research/containment/floor2/north, +/area/almayer/medical/containment/cell) +"xQz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/port_aft_hallway) +"xQV" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xQW" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -18 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"xRj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/emeraldcorner, +/area/almayer/squads/charlie) +"xRk" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/view_objectives{ + dir = 4 + }, +/turf/open/floor/almayer/silver/west, +/area/almayer/command/computerlab) +"xRw" = ( +/turf/open/floor/almayer/uscm/directional/north, +/area/almayer/living/briefing) +"xRH" = ( +/obj/structure/sign/safety/fibre_optics{ + pixel_y = 32 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/tcomms, +/area/almayer/command/telecomms) +"xRJ" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"xSw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" + }, +/turf/open/floor/plating, +/area/almayer/squads/charlie) +"xSx" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xSz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/silver/north, +/area/almayer/shipboard/brig/cic_hallway) +"xSM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/obj/effect/landmark/late_join, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"xSW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/red/west, +/area/almayer/squads/alpha) +"xSY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/sterile_green_corner/north, +/area/almayer/medical/containment) +"xTu" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/engine_core) +"xTx" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_p) +"xTG" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"xTH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer/red, +/area/almayer/shipboard/brig/processing) +"xTR" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/plating, +/area/almayer/command/cichallway) +"xTW" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/yellow{ + layer = 3.2 + }, +/obj/item/bedsheet/red{ + pixel_y = 13 + }, +/turf/open/floor/almayer/orange/north, +/area/almayer/living/port_emb) +"xUa" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"xUy" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/p_stern) +"xUA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/tank, +/obj/structure/sign/safety/life_support{ + pixel_x = -17 + }, +/turf/open/floor/almayer/mono, +/area/almayer/engineering/upper_engineering/starboard) +"xUB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/silver, +/area/almayer/command/cic) +"xUV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/combat_correspondent) +"xUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) +"xVc" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = 24; + pixel_y = 24; + req_one_access_txt = "90;91;92" + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"xVe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/red, +/area/almayer/hallways/upper/starboard) +"xVk" = ( +/turf/open/space, +/area/space/almayer/lifeboat_dock) +"xVF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"xVI" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer/red/southwest, +/area/almayer/lifeboat_pumps/north1) +"xVS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"xVT" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/closed/wall/almayer, +/area/almayer/living/tankerbunks) +"xVY" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer/green, +/area/almayer/hallways/lower/port_midship_hallway) +"xWd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/orange, +/area/almayer/squads/alpha_bravo_shared) +"xWo" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/squads/req) +"xWp" = ( +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"xWv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"xWO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north1) +"xWT" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"xXa" = ( +/turf/open/floor/almayer/orange/west, +/area/almayer/engineering/upper_engineering/port) +"xXd" = ( +/turf/open/floor/almayer/silvercorner/east, +/area/almayer/hallways/upper/midship_hallway) +"xXh" = ( +/turf/closed/wall/almayer/research/containment/wall/west, +/area/almayer/medical/containment/cell) +"xXj" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + id = "Perma 1"; + name = "\improper cell shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Isolation Cell" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/perma) +"xXk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"xXl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower/workshop/hangar) +"xXr" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer/mono, +/area/almayer/medical/medical_science) +"xXT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/hallways/upper/starboard) +"xXW" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xYf" = ( +/obj/structure/machinery/cm_vending/clothing/sea, +/turf/open/floor/almayer/plating/northeast, +/area/almayer/shipboard/sea_office) +"xYr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"xYB" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/starboard_point_defense) +"xYE" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xYP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"xYQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/south1) +"xYZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"xZk" = ( +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -10; + pixel_y = 10 + }, +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/weapon/broken_bottle{ + layer = 4.51; + pixel_x = 9; + pixel_y = 1 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"xZs" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/south1) +"xZt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"xZG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/bedsheet/hop, +/obj/structure/bed, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"xZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"xZM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"xZR" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer/orange/east, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xZU" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"yap" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/starboard_fore_hallway) +"yat" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_a_p) +"yaz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ + name = "\improper Officer's Study" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/officer_study) +"yaF" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -32 + }, +/turf/open/floor/almayer/orange, +/area/almayer/engineering/lower) +"yaQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"yaX" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/almayer/hallways/lower/vehiclehangar) +"yaZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ybm" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ybz" = ( +/obj/structure/machinery/brig_cell/cell_4{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"ybP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) +"ybZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/transmitter{ + dir = 4; + name = "Port Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Port Railgun Control"; + pixel_x = -26 + }, +/turf/open/floor/almayer/redfull, +/area/almayer/shipboard/port_missiles) +"ycd" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"ycl" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"ycm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"ycx" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/almayer/living/briefing) +"ycH" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/margherita{ + pixel_y = 8 + }, +/turf/open/floor/almayer/green/north, +/area/almayer/squads/req) +"ycM" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/upper/u_m_p) +"ycZ" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer/blue/north, +/area/almayer/squads/delta) +"ydh" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/black, +/obj/item/tank/oxygen, +/turf/open/floor/almayer/plate, +/area/almayer/engineering/upper_engineering/port) +"ydz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/lifeboat_pumps/north2) +"ydA" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer/no_build, +/area/almayer/hallways/lower/port_fore_hallway) +"ydE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/mono, +/area/almayer/medical/hydroponics) +"ydI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/aicore/no_build, +/area/almayer/command/airoom) +"ydM" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/living/cryo_cells) +"ydO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/turf/open/floor/almayer/orangefull, +/area/almayer/living/briefing) +"ydY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"yeg" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer/green, +/area/almayer/hallways/upper/fore_hallway) +"yei" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/midship_hallway) +"yeH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"yeN" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/hangar) +"yeR" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = null; + req_access_txt = 19; + req_one_access = null + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"yfd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/almayer/hallways/lower/vehiclehangar) +"yff" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/command/cic) +"yfg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"yfm" = ( +/obj/effect/landmark/start/marine/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"yfn" = ( +/obj/structure/machinery/pipedispenser/orderable, +/turf/open/floor/almayer/plate, +/area/almayer/maint/upper/u_a_s) +"yfy" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"yfz" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/red/west, +/area/almayer/lifeboat_pumps/north1) +"yfG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/apc/almayer/west, +/obj/item/storage/briefcase{ + pixel_y = 15 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"yfS" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/grunt_rnr) +"yge" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/command/lifeboat) +"ygf" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/sterile_green_side/northwest, +/area/almayer/medical/lower_medical_medbay) +"ygp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ygv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"ygB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/green/southeast, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ygP" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/turf/open/floor/almayer/cargo, +/area/almayer/engineering/lower/engine_core) +"yhg" = ( +/obj/structure/machinery/camera/autoname/almayer/brig{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"yht" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/red, +/area/almayer/living/cryo_cells) +"yhI" = ( +/turf/open/floor/almayer/red/east, +/area/almayer/lifeboat_pumps/south1) +"yhR" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"yhV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/brig/mp_bunks) +"yhZ" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/p_bow) +"yia" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"yih" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_m_s) +"yiu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/midship_hallway) +"yiW" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer/cargo, +/area/almayer/squads/charlie) +"yiX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"yjb" = ( +/obj/structure/flora/bush/ausbushes/ausbush, +/turf/open/gm/grass/grass1, +/area/almayer/medical/upper_medical) +"yjq" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi_ext" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/engineering/upper_engineering/notunnel) +"yjr" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_f_s) +"yjE" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/stern) +"yjG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/lobby) +"yjM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/blue/east, +/area/almayer/living/pilotbunks) +"yjU" = ( +/turf/open/floor/almayer/emeraldfull, +/area/almayer/living/briefing) +"ykj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Rest and Relaxation Area" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/living/grunt_rnr) +"ykv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer/test_floor4, +/area/almayer/shipboard/panic) +"ykI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower) +"yle" = ( +/obj/effect/landmark/start/marine/engineer/delta, +/obj/effect/landmark/late_join/delta, +/turf/open/floor/almayer/plate, +/area/almayer/squads/delta) +"ylh" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer/test_floor5, +/area/almayer/engineering/lower/engine_core) +"ylN" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ymg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/almayer/maint/hull/lower/l_f_p) + +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +aKQ +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +"} +(17,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(18,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(19,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(20,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(22,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(23,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(24,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(25,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(26,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(27,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(28,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(29,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(30,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(31,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(32,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(33,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(34,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(35,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +feb +feb +feb +feb +feb +feb +feb +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(36,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aag +feb +qmR +oog +dsA +rbK +tmH +feb +aag +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(37,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aad +hPI +hPI +hPI +hPI +hPI +feb +dhd +oog +jNT +fag +qCA +feb +hRu +hRu +hRu +hRu +hRu +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(38,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aag +hPI +naB +naB +naB +naB +mtl +vdl +nPb +fZX +dBS +nSu +rXE +xyN +ltO +tBP +tfE +hRu +aag +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(39,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +uDg +uDg +hPI +pQr +rib +vtG +naB +mtl +eCI +nOC +qVF +xdJ +kzr +jqY +elV +dJJ +dJJ +glP +hRu +xiV +xiV +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(40,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +uDg +uDg +lHk +naB +wnw +pHp +fgl +dya +fLF +kEq +mtl +mtl +mtl +mtl +ewI +xyN +hdQ +hUU +cXD +xyN +igS +xiV +xiV +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(41,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +uDg +uDg +uDg +uDg +uDg +uDg +uDg +uDg +aPN +lSJ +naB +pQr +jeR +wvI +vPf +fvA +qPD +vcm +tul +mNK +gtU +bjk +xyN +xyN +xyN +xyN +xyN +iuf +pnh +xiV +xiV +xiV +xiV +xiV +xiV +xiV +xiV +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(42,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +uDg +cth +gkr +xkc +oGj +iVD +xkc +mph +nlh +rGr +naB +naB +naB +naB +naB +dcy +qPD +qPD +qPD +qPD +quJ +rdA +dbs +sql +jyY +rwe +pdp +hZw +xYr +mjs +pdp +ohu +iUh +pdp +pdp +kSn +xiV +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(43,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aac +aaf +aag +uDg +gkr +xkc +gkr +vAg +gxI +kqC +bBU +xkc +eeA +naB +pQr +ggS +wvI +piK +fvA +qPD +wZL +ffg +ffg +wsh +eMJ +xkd +xkd +xkd +xkd +xkd +xkd +lRt +tsE +iVG +hmA +hmZ +oDh +oDh +pdp +xiV +aag +aaf +ajY +bdH +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(44,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +uDg +gkr +xkc +hvd +hvd +hvd +hvd +hvd +bLF +eyD +naB +kry +pHp +fgl +xXj +qXE +qPD +sPF +qPD +qPD +uQm +stO +xkd +teE +xJT +xkd +ljS +xkd +xkd +xkd +xkd +xkd +xkd +xkd +pdp +oDh +xiV +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(45,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +pOp +gkr +cth +hvd +ddj +wlg +fuY +hvd +cQG +jXc +naB +pQr +bsp +hCV +naB +naB +uUu +qCU +qZF +qPD +iQd +qJo +xkd +vWG +lJL +dQp +vlM +iHG +dCe +moB +uns +vCy +eyV +xkd +mkF +oDh +pdp +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(46,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +aag +uDg +lDT +xkc +xyZ +hvd +vGn +ehl +ehl +uXu +cQG +alp +naB +naB +naB +naB +naB +naB +nVR +nVR +nVR +nux +tau +nVR +xkd +xik +bjQ +xkd +kmd +tUx +ebd +tHS +xGh +jVa +wDs +xkd +oHf +oDh +pdp +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aac +aaf +aaf +aaf +aaf +aaf +aag +dqw +bDF +bDF +dqw +aag +aag +aag +aag +aag +aag +aag +aag +aag +dqw +bDF +bDF +dqw +aag +aag +aag +aaf +aaf +aaf +aaf +aaf +ajY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(47,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +xkc +gkr +hvd +hvd +iRp +iRp +iRp +hvd +cyc +vzy +fqQ +kHo +sFu +hnE +tTO +wFs +nkX +iQB +cmv +vzk +phN +iVP +xkd +xkd +xkd +xkd +umW +iOD +iOD +tHS +sqW +tUx +wRN +xkd +xkd +pdp +oDh +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +nBJ +nBJ +nBJ +aag +dqw +uwv +uwv +dqw +aag +aag +aag +aag +aag +aag +aag +aag +aag +dqw +uwv +uwv +dqw +aag +aag +aag +wid +wid +wid +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(48,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +lrE +xkc +gkr +hvd +iUX +gii +gIO +gIO +hvd +gYx +oyC +bKI +xhU +xhU +jCX +sEz +iNh +wdF +wdF +wdF +wdF +cMl +icZ +xkd +uvY +oBq +xkd +wKJ +jVa +jVa +tHS +sVc +tUx +xJe +qLt +xkd +pdp +oDh +cPj +aag +etE +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +kJc +jFt +bAs +bAs +bAs +bDF +bDF +bAs +bTT +bTT +bAs +aag +aag +aag +aag +aag +bAs +bAs +bDF +bDF +bAs +bTT +bTT +bTT +bAs +kOR +jYM +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(49,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +lrE +gkr +xkc +hvd +iUX +gJE +cKJ +hyV +keG +cQG +cQG +ugw +cwC +cwC +sEz +cwC +uun +oRk +oRk +oRk +utZ +cMl +hTt +kMH +tUx +iTI +dmZ +eZH +jVa +jVa +tHS +xGh +ycm +qCo +pWr +xkd +aGa +oDh +cPj +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +rUi +grv +bBA +bAK +bCY +bDO +bDO +bDO +bHI +bJS +bAs +aag +aag +aag +aag +aag +bAs +bHP +sSc +sSc +bDO +acr +bPG +acN +bBA +gTK +fWg +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(50,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +lrE +vDh +xkc +lrq +lrq +lrq +lrq +lrq +lrq +lrq +uhA +aaP +tpn +tpn +srT +tpn +tpn +xjF +myP +gDt +bju +cMl +lMc +xkd +qFu +xkd +xkd +vdM +jVa +wtM +moB +sXQ +cyZ +jVa +fJT +xkd +rfB +pdp +cPj +aag +eSU +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +uRR +mFQ +bBA +hWJ +bCY +bDO +bDO +bDO +bHP +bJT +bAs +bAs +bAs +bAs +bAs +bAs +bAs +bNl +sSc +sSc +bDO +bHP +bPG +hpk +bBA +yhZ +wtD +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(51,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +cth +qsp +lrq +kEc +chv +cAy +uhE +vKB +lrq +vjB +gIz +tpn +eVR +cak +vrM +tpn +mHb +hjM +xTH +bju +wSm +dEG +xkd +uvY +duT +xkd +eZH +jVa +jVa +moB +moB +dfk +vzz +moB +xkd +gNZ +pdp +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +ecS +eQR +gol +akb +bCY +bDO +bDO +bDO +abU +bHP +avw +bKn +bLk +bLw +bKn +bLk +avw +bHP +sSc +sSc +bDO +bPn +bPG +ald +gol +sGK +hLu +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(52,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +cUl +gkr +lrq +heo +nqe +nqe +nqe +nqe +tLa +cQG +gfd +tpn +rqS +cak +vrM +tpn +pUD +bju +wdF +wdF +wSm +dPT +kVZ +tUx +iTI +nUj +eZH +tUx +vrx +yhg +lbs +eZH +tUx +cXi +xkd +ttB +pdp +xiV +aag +twB +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +eQR +xAu +bBA +bAN +bCY +bDO +bDO +bOq +bPo +bHP +avw +akb +axk +bLH +vuZ +ald +avw +bHP +sSc +sSc +bOq +bPo +bPG +acs +bBA +xHX +sGK +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(53,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +vOM +gkr +lrq +kui +uqo +pId +qMD +uqo +lrq +nVm +dRA +tpn +gIU +xIq +vrM +tpn +efT +nkF +hkH +kuJ +sLA +jSw +xkd +qFu +xkd +xkd +icM +thL +thL +thL +thL +nYd +thL +jVa +fgR +nEc +oDh +cPj +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +ldF +eox +bBA +bAO +bCZ +bDW +fya +ohA +ohA +ohA +bKb +akf +jbX +kNY +jbX +tuZ +bKb +ohA +ohA +ohA +cFh +bDW +bPJ +iuz +bBA +mVh +uMf +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(54,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +etN +xkc +lrq +sEZ +nqe +nqe +nqe +nqe +mza +cQG +qvE +tpn +tpn +tpn +tpn +tpn +xIu +xvQ +eDt +bju +cMl +kAL +xkd +uvY +sgE +xkd +qJZ +ohJ +thL +thL +uAL +liZ +rUk +jVa +fgR +azg +gKv +cPj +aag +rEr +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +ldF +eQR +bBA +bAP +aqu +aqu +bEF +bNm +bNm +bNm +avw +bKp +bLl +bLJ +bMS +bNe +avw +bNm +bNm +bNm +bOs +aqu +aqu +bQz +bBA +sGK +vOG +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(55,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +gkr +xkc +lrq +dEX +fxJ +fxJ +fAr +qmU +lrq +dmr +wLS +aVm +cmM +miy +iUG +cmM +snX +oIh +oIh +wNt +cMl +nlz +vNp +tUx +iTI +qxe +eZH +ohJ +thL +thL +ezX +uaU +rUk +xaM +fgR +hIG +pdp +cPj +aag +ajZ +bdH +bdH +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 +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +vCE +ldF +bBA +bBu +amg +amg +bFa +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +bOM +amg +amg +rAD +bBA +sGK +mVh +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(56,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +xkc +xkc +lrq +iwV +iwV +iwV +iwV +lrq +lrq +kXt +wLS +eBx +cmM +hAf +cNI +bbi +wdF +wdF +wdF +wdF +kQu +cqM +xkd +qFu +xkd +xkd +pns +omt +omt +omt +omt +uxa +iZU +nhG +xkd +oDh +uqg +xiV +aag +uJk +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +amu +eQR +bBA +bBu +amg +amg +bFj +alU +bId +bJU +bKd +alU +bLm +bTG +bMT +alU +bNi +bNn +bNq +alU +bON +amg +amg +rAD +bBA +ozH +flr +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(57,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +gkr +old +cQv +oVf +rmx +bvH +evR +cQv +cQv +rmk +nuZ +cmM +cmM +pdT +otp +cmM +tzd +tzd +sgi +bju +wSm +kAL +xkd +uvY +qEA +xkd +eZo +thL +thL +thL +thL +tov +thL +sUs +xkd +gNZ +pdp +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +kMW +eQR +bBA +bBv +aqu +tkq +bFa +alU +neO +aoi +avB +bKq +ayw +aoi +avB +bKq +ayw +aoi +azA +alU +bOO +tkq +aqu +bQG +bBA +uoO +mVh +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(58,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +gkr +wJC +cQv +cBw +kde +kde +ajj +mZQ +cQv +dFl +tUK +kTp +sYl +fgt +kCY +kTp +gHt +oIh +eNR +bju +wSm +ybz +rrz +tUx +iTI +tlp +lXb +thL +oXp +thL +thL +tov +thL +xhx +fgR +oDh +pdp +cPj +aag +scz +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +nBJ +iWJ +eQR +bBA +bBx +amg +bEw +bFk +bHq +let +bJX +bJX +bKs +bLo +bMO +bMU +bNf +bJX +bJX +let +bHq +bFk +bPq +amg +rAD +bBA +sGK +nhV +wid +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(59,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +gkr +wMF +cQv +eaf +bEv +quj +vgi +rXd +cqJ +oJm +tUK +kTp +hUh +nWS +xpw +kTp +neC +mjt +vqc +edo +fTt +lMc +xkd +qFu +xkd +xkd +thq +ezX +pqF +rUk +thL +iFc +thL +tUx +fgR +pdp +hIG +cPj +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aag +aag +nBJ +dKS +ffN +bBA +bBy +amg +aoa +ald +alU +bIn +bJY +aoi +bLh +bLp +bMP +bNa +bLh +aoi +bNo +bNt +alU +akb +aoa +amg +bQE +bBA +bME +sGK +wid +aag +aag +ajY +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(60,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +lrE +xkc +vDh +cQv +eaf +bEv +lEe +pGT +pGT +vkM +ksm +bxE +cmM +oeZ +wLF +oeZ +oeZ +ptq +oRk +eNR +bju +cMl +dEG +xkd +uvY +lSs +xkd +kbX +ezX +prY +rUk +thL +thL +thL +tUx +fgR +pdp +aCA +cPj +aag +okD +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +nBJ +eQR +bTW +bBA +bBz +aqu +bEx +bQt +alU +bIw +bJY +sta +rxK +amX +bLh +azA +pfa +iLq +bNo +bNS +alU +bPg +bEx +aqu +bQI +bBA +gsy +sGK +wid +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(61,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +xkc +xkc +cQv +eaf +bEv +vyH +ajj +rXd +cqJ +oJm +tUK +kTp +uLE +nWS +cTy +oeZ +emp +emp +emp +iEx +cMl +qFE +wDC +tUx +iTI +fKw +pgP +thL +thL +thL +thL +thL +thL +tUx +xkd +pdp +vhA +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ldF +ldF +xiP +bBA +lsV +amg +ddz +ald +alU +bIx +bJZ +kyN +bLi +bLq +bMR +bNb +bNg +mTm +gjt +vJo +alU +bPh +bPC +amg +pyL +bBA +cDb +sGK +nhV +wid +aag +ajZ +bdH +bdH +bdH +bdH +aaa +aaa +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 +"} +(62,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +lDT +xkc +cQv +eaf +bEv +sBg +uGN +rXd +cQv +mAY +tUK +kTp +hoW +nWS +aIY +oeZ +cFC +oIh +sBQ +skj +tXc +cqM +xkd +qFu +xkd +xkd +cvH +thL +thL +thL +thL +thL +thL +tUx +xkd +pdp +oDh +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aag +nBJ +nBJ +ldF +eQR +uFp +bBA +bBA +tiR +bBA +bBA +alU +bIy +alU +alU +alU +syg +alU +pQz +alU +alU +alU +pzW +pzW +pzW +pzW +hNB +pzW +pzW +ipB +mVh +sGK +wid +wid +aag +aaf +aaf +aaf +ajY +aaa +aaa +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 +"} +(63,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aad +aag +uDg +gkr +qsp +cQv +xLl +bEv +kde +ajj +tuk +cQv +kYU +tUK +kTp +krO +nWS +glG +oeZ +ehX +mTN +hZJ +iLG +jXd +kAL +xkd +uvY +cjk +xkd +pgP +tUx +tUx +tUx +tUx +tUx +vsz +oEE +xkd +gNZ +pdp +xiV +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +nBJ +nBJ +nBJ +ldF +ldF +bos +bos +bos +haR +uHT +jHn +kcp +bWJ +nar +alU +bXo +oCi +bLs +mZM +aoi +grG +bXY +alU +xNM +ikl +eLp +dFM +lEV +mZP +sDx +sDx +sDx +mVh +sGK +wid +wid +wid +wid +aag +ajZ +aaa +aaa +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 +"} +(64,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +bdH +bdH +aad +uDg +uDg +xkc +eeA +cQv +dzG +kde +ioV +cQv +tlk +cQv +uhA +tCH +oeZ +oeZ +wLF +oeZ +oeZ +mFc +fbr +emp +lze +wSm +slf +bli +tUx +iTI +bQc +pgP +uVV +iBl +cHk +rkV +rkV +cHk +vYi +cHk +pRs +pdp +xiV +xiV +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +fUz +ldF +eQR +ldF +ikA +bos +gpO +uHT +bKP +uHT +sGQ +kcp +wMv +nCR +alU +uDn +bKf +bLs +bLj +aoi +bNk +ecZ +alU +odt +ikl +qAy +mua +mua +mua +lEV +eQz +sDx +mVh +fJu +mVh +roj +qzA +wid +aag +ajZ +aaa +aaa +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 +"} +(65,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +bdH +bdH +aad +uDg +hzN +gkr +krG +cQv +rdM +gUg +cov +cqJ +may +hoK +mcp +hzG +eyD +ngr +cDN +peO +lEv +jic +qGf +emp +bju +wSm +jSw +emp +emp +emp +emp +vbo +emp +emp +cHk +hlI +ekZ +kvL +oix +cHk +uxb +oDh +pdp +xiV +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +lJM +ldF +eQR +ldF +lyP +bos +gpO +kcp +kcp +iqp +kcp +kcp +jgl +kcp +alU +alU +alU +iTW +alU +noo +alU +alU +alU +wrr +kjw +hBr +tqQ +hgp +hgp +hgp +nef +sDx +mXm +mVh +sGK +sGK +nhV +wid +aag +ajZ +aaa +aaa +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 +"} +(66,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aaa +aaa +bdH +bdH +aad +uDg +fHb +gkr +vxM +vxM +vxM +vxM +vxM +vxM +tfZ +cQG +cQG +hzG +eyD +tdy +cDN +oFY +oFY +yjG +ncl +jcf +bju +cMl +oeB +emp +slF +oIh +qUz +ksg +oIh +iTl +cHk +frt +vUI +tgJ +wVh +cHk +cHk +oDh +pdp +xiV +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +eQR +eQR +ldF +eQR +sxS +bos +gpO +kcp +bBD +bTS +bTS +lxo +qcy +kcp +sub +sub +tqf +pHF +vYd +ghF +eSp +ghF +aFG +pPQ +juS +mdk +mdk +mdk +mdk +mdk +kCd +bSv +bSv +bSv +bSv +bSv +sGK +wid +aag +ajZ +aaa +aaa +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 +"} +(67,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +bdH +bdH +aad +uDg +xkc +gkr +vxM +rfY +kGu +iqR +fyp +wJh +oJm +cQG +cQG +hzG +nzT +tff +cDN +oFY +cQL +npO +ncl +jcf +bju +cMW +qEy +vKr +rQc +oDy +oDy +wsq +vxK +gwj +oiz +csy +csy +bWQ +deH +szG +cHk +pdp +kIf +xiV +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ldF +ldF +wcJ +jCr +nQn +bos +uHT +kcp +bTR +iEg +oQM +aqI +aqI +kcp +bOw +mYt +jsR +vPW +vyB +vyB +vyB +vyB +aFG +vFp +yaX +sje +sje +sje +sje +sje +jhS +qih +bTH +foN +cDZ +bSv +hLu +wid +aag +ajZ +aaa +aaa +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 +"} +(68,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aac +aag +uDg +kac +xkc +vxM +tQi +wee +wee +fRS +wJh +iFK +ksm +haY +kaQ +vNT +oSC +uFq +wsl +wSu +xIW +nah +emp +gbw +oRk +jyb +emp +bPH +rJj +mBx +utZ +pyj +jPP +cHk +wxF +vJc +kUg +ifz +fyI +cHk +pdp +ome +xiV +aag +ajY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ecS +ldF +bos +bos +bos +bos +uHT +kcp +lxW +hPh +wGX +bFr +ppe +kcp +lEV +ghF +ghF +jak +jdC +jdC +jdC +jdC +wiQ +dEo +fGd +sje +sje +sje +sje +sje +jhS +bSv +tjw +bTH +bTV +bSv +sGK +wid +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bTg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(69,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +fco +qsp +vxM +jvP +rDQ +rDQ +rDQ +ctT +wXz +aNW +tvJ +eyD +eyD +tsX +tsX +epu +oLF +tsX +tsX +emp +vyi +vyi +vyi +emp +emp +emp +emp +emp +wIC +lnh +wIC +rWn +rWn +cHk +cHk +gxt +cHk +dJy +aCA +xiV +aag +ajZ +bdH +bdH +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 +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +eQR +ldF +bos +vkO +ibf +bos +rIw +kcp +wTN +kZN +rgK +hbu +iYe +bJl +yfd +yfd +yfd +kgS +lEV +lEV +lEV +lEV +aFG +mua +yaX +sje +sje +oiX +sje +sje +rqQ +bSv +ifb +bTH +bSv +xVT +flr +wid +aag +ajZ +aaa +aaa +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 +"} +(70,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +lDT +xkc +vxM +sbP +sbP +sbP +sbP +wJh +oWK +jwr +eyD +eyD +tHr +mqg +udR +vka +uwN +nVq +xuZ +mSs +xuZ +xuZ +xuZ +xuZ +rEY +gxU +giR +vUP +wIC +qZA +dgx +fKi +vxG +wIC +whQ +bHu +cHk +oLf +hIG +xiV +aag +ajZ +bdH +bdH +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 +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ldF +eQR +bos +lBl +nEO +bos +gpO +kcp +oMi +bAZ +bTS +bTS +niR +kcp +lEV +ghF +ghF +pHF +lEV +ghF +ghF +ghF +aFG +mua +hoc +sje +sje +sje +sje +sje +jhS +bSv +aIX +aIX +bSv +xcI +sIu +wid +aag +ajZ +aaa +aaa +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 +"} +(71,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +xkc +gkr +vxM +pas +ncf +kjk +qxr +wJh +oWK +rPF +pfd +ceZ +jnD +hUW +hiM +rWs +qNR +hiM +hiM +hiM +hiM +rWs +rWs +rQt +cgT +xuc +gXx +wdh +wIC +mHz +jPS +jPS +xrt +wIC +aDt +jTU +cHk +oDh +xas +xiV +aag +ajZ +bdH +bdH +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 +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ldF +eQR +rqv +gpO +gpO +bos +gpO +kcp +kcp +kcp +sXE +kcp +kcp +kcp +lEV +vyB +vyB +pHF +lEV +ghF +vyB +vyB +aFG +pJq +yaX +sje +sje +sje +sje +sje +jhS +bSv +cop +cop +bSv +kxe +sGK +wid +aag +ajZ +aaa +aaa +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 +"} +(72,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +uDg +xkc +gkr +vxM +vxM +vxM +vxM +vxM +gaJ +vMJ +qFX +cAR +vGA +hUW +dHd +vka +lnt +eAF +uVA +uVA +uVA +uVA +gde +uVA +wIQ +xWv +aQb +vka +jUY +wIC +hNY +qFi +vAG +hsj +wIC +cHk +cHk +cHk +oDh +nEc +xiV +aag +ajZ +bdH +bdH +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 +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +nBJ +ldF +eQR +bos +iWH +gpO +bos +gpO +nEZ +kcp +bTU +gZK +bTS +lyX +kcp +rMj +ghF +vyB +pHF +lEV +ghF +vyB +ghF +aFG +pPQ +juS +jjl +jjl +jjl +jjl +jjl +kCd +bSv +kBY +bTn +bSv +mVh +mVh +wid +aag +ajZ +aaa +aaa +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 +"} +(73,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aag +aag +uDg +cUl +xkc +ode +xkc +gNg +cAR +dRj +yhV +jvc +jEV +cAR +iuE +uwN +vka +pRO +kqy +awz +awz +cZh +cZh +cZh +awz +awz +jfK +wIQ +mPj +omy +sCQ +wIC +wvE +jhI +jfY +bra +wIC +eQm +rXQ +vky +oDh +pdp +xiV +aag +aag +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +nBJ +nBJ +nBJ +nBJ +nBJ +eQR +ldF +bos +bos +olW +bos +uHT +gUi +kcp +onY +wdf +bTS +kcp +kcp +sDx +ghF +vyB +pHF +lEV +ghF +vyB +ghF +sDx +prl +gNy +fbU +vbZ +qEl +qEl +qEl +vWs +bSv +bSv +bSv +bSv +sGK +mVh +wid +wid +wid +wid +wid +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 +"} +(74,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +adG +adG +adG +adG +adG +rvI +cYo +ode +gkr +gkr +cAR +cAR +cAR +pKU +vOu +cAR +udK +mwA +lnt +cgO +awz +awz +nID +wPF +eHx +uKd +oER +awz +awz +mgj +wIQ +jHh +jUY +wIC +aWg +jES +vBJ +qTQ +wIC +oDh +pdp +vky +pdp +paJ +tuA +tuA +tuA +tuA +tuA +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +nBJ +ldF +jsE +rdN +eQR +eQR +eQR +ldF +sXq +rdN +rMO +uHT +hfv +kcp +xNz +utK +rKA +kcp +kcp +sDx +hIF +vyB +pHF +lEV +ghF +vyB +kEW +sDx +xHl +vyB +mQd +akn +vTM +vyB +lEV +meE +gGw +mVh +iBu +sGK +mVh +mVh +mVh +sGK +gDX +sGK +wid +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 +"} +(75,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +aeK +aeK +bur +hdd +akC +akC +akC +akC +uvp +gkr +cAR +pbm +qjK +jvc +dGT +cAR +bmz +wSR +mMV +awz +awz +aJp +jgJ +jgJ +jgJ +jgJ +jgJ +mZb +awz +awz +woy +laO +nRH +wIC +tiF +vAG +opF +pDW +wIC +oDh +lhj +kCi +kCi +kCi +kCi +hjA +nIE +jKn +pyi +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fwK +cZB +uaG +uaG +uaG +uaG +uaG +uaG +uaG +uaG +bcm +bcm +kcp +kcp +kcp +kcp +kcp +kcp +kcp +sDx +lQB +qax +jTH +gPU +lQB +qax +lQB +sDx +sDx +sDx +sDx +sDx +sDx +sDx +sDx +sDx +sDx +rgt +rgt +sYr +rgt +rgt +rgt +rgt +rgt +ctw +hAh +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 +"} +(76,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +afa +aeK +bur +wdI +sFf +bbV +bzz +akC +pzc +gkr +cAR +pQI +gym +gSz +cNJ +cAR +pZS +pEB +jUY +qwp +aVI +jmY +rHc +xhZ +xhZ +xhZ +rHc +qyo +udx +qwp +pZS +jHh +jUY +wIC +wIC +vzj +wIC +wIC +wIC +oDh +nYi +kCi +sDD +kOv +cRv +sQF +nIE +jKn +vjg +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fwK +elY +uaG +sbZ +lxd +dPk +nBV +dyq +rVB +uaG +lYN +byr +aXh +bAQ +aXj +bDH +xyw +bIo +bKt +bLD +aYt +btO +btN +xyw +aYt +btO +aYt +mIz +xyw +bYq +bZi +bZO +caM +aXj +qUh +xyw +ccG +rgt +gMS +vXF +hsc +epk +lwG +uJb +rgt +wRf +hAh +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 +"} +(77,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +aeK +aeK +bur +xFP +nIt +adu +aHZ +akC +lDT +gkr +cAR +jgR +iAg +vaS +bsF +cAR +vkR +wsD +jUY +qwp +eei +jmY +iwW +sTm +oSq +sTm +tdT +qyo +itX +qwp +vGA +uwN +uVd +wIC +wjY +aTg +rFg +kkv +wIC +pdp +pdp +kCi +uAj +qfa +btD +vmW +nIE +jKn +pyi +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +okd +lql +okd +urk +fmZ +ePq +fmZ +cqd +jhc +eml +btO +aYt +bzQ +bAS +baG +bDI +btO +bhT +bKu +btO +aYt +wqh +bym +brW +brW +bve +bwn +bVM +bVM +bAh +bZj +bVM +bwn +bVM +bVM +bwn +bVM +oTH +kUA +gRJ +mqB +vjG +mqB +oQw +avp +oAa +efk +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 +"} +(78,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +adG +amz +amz +aly +nkx +bbZ +btv +akC +lCm +gkr +cAR +cAR +eLX +vaS +nCD +cAR +kfE +wsD +jUY +qwp +rBx +jmY +iwW +sTm +gwR +sTm +tdT +qyo +pbW +qwp +cDn +uwN +jUY +wIC +lcW +aTg +wIC +wIC +wIC +pdp +iEa +kCi +eqI +ssZ +btD +awC +uMj +uMj +tuA +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +okd +lql +okd +nDb +jhc +ccL +rDf +xZM +mnc +eml +btO +aYt +aYt +aYt +aYt +bdK +aYt +bhU +bjR +aYt +aYt +wqh +bHB +xyw +btO +bcc +aYt +aYt +aYt +bAi +aYt +aYt +aYt +aYt +aYt +aYt +btO +tpG +wdQ +ybP +dhQ +dcx +mLg +wAK +efk +bTz +efk +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 +"} +(79,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aeE +afb +ayq +cfE +cfE +pvP +adu +aHZ +akC +jdn +lgk +hMM +cAR +jlE +cXV +kqd +cAR +xDn +pEB +jUY +awz +wkH +hmS +mWV +jZu +sco +fqO +lIp +hWO +fqc +awz +gGr +jHh +sCQ +wIC +wtY +aTg +jIT +wIC +aCA +pdp +pdp +kCi +nwW +btD +btD +rVN +rVN +vly +ybZ +pun +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +okd +lql +okd +nDb +jhc +jhc +jhc +vOV +eAm +eml +btO +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +bwm +bHB +xyw +btO +bSR +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +aYu +btO +tpG +hbA +uky +mLg +mLg +mLg +wAK +efk +bTz +efk +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 +"} +(80,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aeE +aie +aTy +adu +adu +adu +adu +aHZ +akC +pek +rir +pek +cAR +gdG +kxP +mea +cAR +nNv +pEB +jUY +qwp +wyt +jmY +iwW +dCr +gwR +sTm +tdT +qyo +tsy +qwp +ora +laO +rKQ +wIC +yeR +aTg +nNg +wIC +pjz +uTs +pjz +kCi +nRR +btD +btD +btD +btD +tnb +oit +pun +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +okd +lql +okd +bRt +oGm +hPD +aIy +ekR +gWm +mpV +bvf +bdL +bvf +bvf +bvf +bdL +bvf +bvf +bvf +bvf +bvf +bvf +bIe +baN +bvf +bvf +bvf +bvf +bvf +bvf +bvf +bdL +bvf +bvf +bvf +bdL +bvf +srh +gKo +fsf +fuU +cnI +qfq +vjT +efk +bTz +efk +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 +"} +(81,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aeE +aig +brf +cSC +cSC +nIt +adu +hxG +akC +ibP +loE +cmr +cAR +cAR +cAR +cAR +cAR +xSz +pEB +jUY +qwp +sUE +jmY +iwW +dCr +oSq +sTm +tdT +qyo +tsy +qwp +pZS +jHh +vCx +wIC +wIC +wIC +wIC +wIC +hrI +ioM +xCy +kCi +nNt +vqC +btD +pPN +pPN +gKF +ndZ +pun +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fwK +jru +uaG +aEf +lxd +cif +jaz +dyq +lxd +uaG +vCg +bHB +xyw +xyw +xyw +bdM +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xpT +xyw +xyw +xyw +bHB +osx +rgt +qTu +wlD +gTk +qSI +lwG +uJb +rgt +oCa +hAh +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 +"} +(82,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +adG +amz +amz +aly +wmg +adu +cqQ +afT +txy +rbp +cri +euL +hiM +hiM +qRj +xuZ +jnD +wsD +jUY +qwp +iiZ +jmY +rHc +lAy +wjq +wjq +rHc +qyo +tsy +qwp +vGA +uwN +pYX +xuZ +pcj +hXm +fZq +iFA +sLx +twQ +twQ +bpd +bqT +vZv +vjK +awC +uMj +uMj +tuA +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fwK +cZB +uaG +uaG +uaG +uaG +uaG +uaG +hte +lma +xyw +bHB +xyw +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +puI +aYt +aYt +aYt +aYt +bfY +baR +bfJ +btO +dTI +btO +aYt +xyw +bHB +xyw +bcm +hOV +hOV +hOV +hOV +hOV +hOV +hOV +vVZ +hAh +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 +"} +(83,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +aeK +aeK +bur +hdd +pvP +adu +frF +akC +oUt +cmr +iPq +aMf +vka +vka +mPj +mIy +eEw +rTk +nRH +awz +awz +fRr +dmv +cHE +dmv +dmv +dmv +olU +awz +awz +vSN +mPj +rWs +inh +ewr +lPC +mgy +qoN +tVx +feG +pPy +kCi +nRR +btM +vjK +dUZ +nIE +jKn +pyi +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +nmp +eWs +usq +rQw +pOH +sbt +smU +nZR +lpl +xyw +bHB +gjm +aYu +ilG +aYt +bfJ +btO +btO +btO +btO +aYt +bcm +bcm +btG +btO +btO +btO +btO +aYt +bBN +bcm +caN +aYu +bcb +bHB +btO +bcm +sCW +nvX +tTC +jdu +tWd +aPe +hOV +ygv +kyP +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 +"} +(84,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +afa +aeK +bur +wdI +aHY +tyK +iKI +akC +akC +aMf +hSv +xoB +xoB +kzy +wIQ +jHh +vka +lnt +ciN +sUg +qwp +vYM +fJm +aAq +iah +mGe +dCx +rpK +qwp +xmg +ggt +wIQ +vka +jHh +lnt +ckP +xTx +xTx +cyv +eKZ +xTx +kCi +cfk +uws +cRv +nwx +nIE +jKn +vjg +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +klT +eWs +njO +riC +eqd +goY +fqJ +nOX +xcV +xyw +bHB +wqh +xyw +bcc +aYt +bfK +aYt +aYt +aYt +aYt +aYt +anW +aYt +aYt +aYt +aYt +aYt +aYt +aYt +btO +sEq +wqh +xyw +bcc +bHB +aYt +bcm +xsQ +tTC +tTC +tTC +tTC +tTC +iho +uKH +kyP +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 +"} +(85,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +aeK +aeK +bur +xFP +akC +akC +akC +akC +ehM +cmr +iPq +oQJ +xoB +xoB +vSN +jHh +lnt +dUE +awz +awz +awz +jKF +awz +rGE +awz +lsp +awz +jKF +awz +awz +awz +sTo +wIQ +jHh +jUY +xTx +xTx +hrI +tVx +feG +bxY +kCi +kCi +kCi +kCi +vmW +nIE +jKn +pyi +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +xzB +bfs +bYW +bYW +bYW +bYW +kNf +vpT +xcV +xyw +bHB +sXB +baH +bcd +bdO +bfL +baH +bjS +bdO +bfL +baH +bjS +bdO +bfL +baH +bjS +bdO +bfL +baH +bjS +bdO +bEA +baH +fVz +bHB +bBN +bcm +uPQ +tTC +tTC +tTC +tTC +gzN +hOV +uXm +kyP +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 +"} +(86,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aad +adG +adG +adG +adG +adG +adG +ltw +cmr +oRm +cmr +cmr +iPq +oQJ +pcc +xoB +xDn +uwN +wiN +awz +awz +awz +awz +aGb +qVS +aUe +gAl +aVG +aGj +aVR +awz +awz +awz +awz +oWg +uwN +jUY +xTx +lym +hrI +lIQ +noy +rcG +lwY +feG +kfB +tuA +tuA +tuA +tuA +tuA +tuA +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +xzB +bfs +qfQ +cJm +jwi +bYW +phw +xMG +xcV +xyw +bHB +aZO +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGF +bHB +aYt +bcm +vKI +tTC +hhd +ybm +ffq +rsV +hOV +mLN +kyP +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 +"} +(87,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +cZe +cmr +lSX +uaA +snx +snx +fLt +cmr +fYr +xoB +pNa +iCu +awz +awz +agb +azC +awz +nne +aGj +oSw +vIu +aVH +aGj +iQj +awz +oQs +nFm +awz +ceE +eMP +faX +xTx +tIX +ioM +abn +ioM +lIQ +qOY +xZH +mSr +nLp +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +xzB +bfs +wVN +qxI +qmM +bYW +wFN +wFN +tGH +hmy +bHB +aZP +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGG +bHB +btO +bcm +kQr +tTC +tTC +tTC +tTC +tTC +hOV +uKH +kyP +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 +"} +(88,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +cZe +cCL +vDz +kcH +kcH +kcH +kcH +kcH +kcH +kcH +kWq +qnh +aVG +awz +afZ +afZ +awz +xTR +awz +cRb +awz +opC +awz +xTR +awz +afZ +afZ +awz +dFR +qnh +ouW +mKq +dHZ +dHZ +aES +aES +aES +aES +lIQ +xZH +nLp +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +onv +bfs +pjh +qxI +qxI +iXm +qxI +qxI +vvX +xyw +bHB +aZQ +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGH +bHB +btO +bcm +qhG +krJ +jOt +tTC +tTC +tTC +hOV +uKH +kyP +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 +"} +(89,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +cZe +cZe +cZe +cZe +iPq +cmr +kcH +kcH +kcH +kcH +xKT +eqN +aBP +aKa +qnh +ewS +oBA +aom +aom +oUG +aom +bzR +qnh +oUG +aKa +bzR +aom +oUG +aom +aom +mJe +iVy +qnh +aKa +rrB +aGr +eDu +tKr +uNg +cLN +aES +hrI +tVx +nLp +nLp +nLp +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +xzB +bfs +wFi +qxI +dKO +ykv +jPu +qKl +pPd +xyw +bHB +aZR +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGI +bHB +xyw +bcm +gOk +tTC +tTC +tTC +tTC +bjg +hOV +siT +kyP +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 +"} +(90,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aad +aag +aag +cZe +ivu +gSy +ltw +iPq +cmr +kcH +rlf +soq +eYQ +eqN +dmA +hyQ +iur +lTt +haB +dvl +miE +dCK +esF +mQc +mQc +wgk +gaQ +aIl +aGv +aGv +dvl +fYf +uCW +omb +haB +gtp +qfA +tYX +tpD +xfO +iTD +vCO +vCO +jxB +hrI +tVx +hrI +hrI +hrI +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +dvD +bfs +bfs +sir +bfs +bfs +eWs +eWs +eWs +xyw +bHB +aZO +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGF +bHB +eEc +hOV +hOV +tTC +tSm +tcd +tTC +rsV +hOV +siT +kyP +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 +"} +(91,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aad +aag +aag +cZe +nHu +sit +snx +oVY +cGA +kcH +rBa +nPs +vEj +nPs +rJD +hyQ +fEk +hlU +wVW +feD +azL +aJw +iBY +wVW +wVW +wVW +wVW +wVW +wVW +wVW +dmg +vMI +gII +oPy +wVW +fDU +uiZ +mKq +qCy +rpp +vCO +vCO +vCO +jxB +gUu +dWc +lVW +kcs +rDH +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +fea +eWs +rsS +xzB +mKs +sCT +rXU +rEt +eWs +wlb +bHB +aZP +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bFJ +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGG +bHB +bGK +rrh +xKG +gyH +rSx +dCz +tTC +lDA +hOV +siT +kyP +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 +"} +(92,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aad +aag +aag +cZe +lSX +nRE +cmr +cmr +sWw +kcH +rIW +oGx +wvU +yiX +nrb +hyQ +aic +aov +wVW +wVW +sEp +wVW +wVW +wVW +swH +ucz +wVW +sSG +sEM +wVW +wVW +wVW +osz +wVW +wVW +aKn +aKz +pQy +jhW +mWD +wmT +jhW +mWD +jxB +xBK +moc +pYQ +tVx +hrI +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +sGw +dvD +kWI +xzB +dvD +ipk +dvD +xzB +dvD +meT +wqh +bHB +aZQ +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGH +bHB +cuy +rrh +iNR +uCR +tTC +tTC +tTC +fca +vjS +xee +kyP +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 +"} +(93,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aad +cZe +cZe +cZe +vfS +cmr +cmr +agj +agj +agj +agj +agj +agj +kcN +kcN +agj +akL +aov +wVW +apo +fHh +wVW +lZs +lVX +sni +ayz +dAX +aQg +vpV +snI +aGp +wVW +aDv +aHK +wVW +aKn +aKy +mKq +aES +aES +aES +aES +aES +aES +aES +aES +nVn +cZO +hrI +nLp +nLp +nLp +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +sGw +xzB +eWs +omx +xzB +rAw +qNK +rEt +sCT +eWs +pyC +bHB +aZR +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGI +bHB +kwQ +rrh +iNR +uCR +rDR +tTC +wyz +gzN +hOV +uKH +kyP +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(94,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aad +tvt +fRg +peM +jUV +cmr +agj +agj +jbN +mTc +hkX +yfG +lxE +kcN +twI +ufL +aic +aov +wVW +arF +alX +auQ +awm +avS +nwD +asR +pbs +pbV +aPB +aJG +aGq +auQ +aIf +aEA +wVW +aKn +iJB +mKq +aVU +aRq +bHG +ceK +sxD +bhJ +bHG +aES +aES +fMU +hrI +dPd +rLH +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +sGw +xzB +eWs +eWs +sOr +eWs +eWs +eWs +eWs +eWs +cCE +bHB +aZO +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGF +bHB +iAw +hOV +hOV +tTC +tTC +tTC +jRp +rsV +hOV +kzs +kyP +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +"} +(95,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aad +tvt +jhR +fix +pfL +cmr +agj +kyR +agc +qfD +agc +kJm +gFR +kcN +cod +ufL +aic +aov +wVW +arG +alX +lQG +oPE +alZ +auT +aBR +awD +bZJ +aRt +axp +aPI +lQG +aIf +aEB +wVW +aKi +amY +aVg +aVV +aWV +aZy +ceK +aES +bpe +brS +rOs +aES +dWA +hrI +hrI +dPO +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +dvD +xzB +eWs +hXg +dON +oJj +vLp +oYA +gWt +jHt +amo +bHB +aZP +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGG +bHB +btO +xjW +uTk +tTC +tTC +tTC +cyR +tTC +hOV +qpV +hSb +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(96,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aad +tvt +oyX +vBC +rhm +she +agj +ogK +qgr +agc +agc +kJm +lpg +kcN +yff +ufL +aic +aKq +luZ +alX +alX +avY +alX +alX +alX +vNW +pON +vRb +alX +alX +alX +avY +aIf +alX +eRu +aKq +aKz +mKq +aUk +aWW +aGr +uvt +aES +aES +aES +aES +aES +tPc +jwq +vwU +uew +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +dvD +xzB +eWs +irJ +bKk +kil +vnY +fCG +gYg +jHt +gRP +bHB +aZQ +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGH +bHB +btO +bcm +gBU +tTC +tTC +efJ +tTC +sHe +hOV +uKH +vyr +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(97,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +cZe +kwg +cmr +cmr +jkq +agj +nCx +tYM +mqb +kDK +jMx +mXj +kcN +kcN +agj +aic +aKq +uTU +alX +alX +aqN +avY +alX +alX +paL +euV +mJu +alX +alX +avY +aqN +aIf +alX +uTU +aKq +aKz +mKq +ceK +lcy +iTw +ceK +sxD +bhJ +bHG +nis +aES +xGF +tVx +jne +rDH +nLp +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +fzx +dWJ +eWs +nVo +qlL +aYs +dhj +vnY +mRH +jHt +xjK +bHB +btO +bdU +aog +bdU +bfV +baM +bkd +bdU +bfV +baM +bkd +bdU +bfV +baM +vbf +vbf +vbf +yeN +qrp +mUI +xBr +baM +bcb +bHB +aYt +bcm +ohI +tTC +tTC +tTC +tTC +tml +hOV +uKH +hZZ +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(98,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aad +tvt +gJf +cmr +hYE +vAz +agj +nXO +hvH +bVs +hvH +hvH +qBq +xxh +xpi +agj +bFA +aov +wVW +arR +atO +atO +atO +awt +aqN +rKd +aAA +xMB +aqN +ays +atO +atO +cvZ +asN +wVW +aTj +aKz +mKq +bFC +vWA +cqY +ceK +aES +bpe +brS +cpj +aES +hro +tVx +tNB +ioM +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +dvD +nsd +eWs +kqm +vnY +wjL +ddF +gKK +dBR +jHt +bwl +bHB +xyw +puI +aYt +aYt +aYt +puI +aYt +pcl +gHZ +pcl +gHZ +bHD +api +aYt +sIU +gdp +lcV +lcV +web +hif +jAt +xyw +bcc +bHB +xyw +bcm +grT +tTC +tTC +ove +tTC +rsV +hOV +siT +bUQ +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(99,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aad +tvt +hsu +cmr +pFq +iPq +agj +dyj +fnv +bVs +xZG +kYt +mXj +ulo +kJW +agj +aic +aoA +wVW +teY +eVj +aqN +alX +asc +abk +huw +aAB +aBZ +avY +awk +alX +alX +mPn +xMA +wVW +aKo +aKz +mKq +ceK +gUL +hHl +uvt +aES +aES +aES +aES +aES +uhh +cZO +ppG +ioM +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +dvD +kFU +eWs +jsw +tPh +tPh +fgy +ctQ +wer +pKW +wqh +bHB +vpW +eXq +aho +aho +aho +eXq +kqv +pcl +bpj +pcl +gHZ +nfF +fgE +btO +btO +btO +btO +btO +gST +cQy +xOw +rOc +fVz +bHB +vpW +bcm +cKm +tTC +cOh +tTC +tTC +dPq +hOV +siT +xFt +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +"} +(100,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +bdH +aaa +aaa +aad +tvt +hJD +cmr +fFQ +pMH +agj +mXj +mXj +lul +mXj +mXj +mXj +mXj +mXj +agj +aic +aov +wVW +awA +ayr +awH +aPD +asc +azW +aqN +aAC +aCa +bPs +xUB +gkK +oug +vSl +aGH +wVW +aKn +aKz +mKq +ceK +wVB +psa +ceK +sxD +bhJ +bHG +brS +aES +jrI +tVx +raO +ioM +rwZ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +xzB +xer +eWs +rNu +hii +fkC +vnY +ctQ +wer +pKW +wqh +bHB +xyw +aho +vWc +nCj +aEj +aho +aYt +pcl +gHZ +pcl +gHZ +pcl +fNi +aYt +xyw +vAq +hYG +aYt +gGs +aYt +aYt +aYt +jSo +bHB +xyw +bcm +qKb +tTC +xQj +tTC +tTC +uTk +hOV +siT +xFt +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(101,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aad +cZe +bLc +fOK +pWd +iPq +agj +mXj +pjR +jND +aKk +aKk +szf +faE +mXj +agj +amI +aov +wVW +wVW +wVW +wVW +wVW +rOC +soX +sKI +vHt +aCb +aDv +aEC +wVW +wVW +wVW +wVW +wVW +aKn +aKz +mKq +ceK +lcy +iTw +ceK +aES +tJi +ivf +bpe +aES +pok +tVx +kzc +gen +nLp +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +sGw +nkj +dvD +eWs +rVt +tVZ +bkS +vnY +ctQ +wer +pKW +wqh +bHB +ezQ +eXq +fAa +oYp +oZp +eXq +vvp +aYd +aMY +bqF +gHZ +pcl +oRJ +fTm +fPu +vAq +hYG +hYG +aYt +aYt +gCw +boV +xyw +bHB +aYt +bcm +jNG +tTC +vMb +xYE +iuI +lDA +hOV +siT +fFU +kyP +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(102,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +aaa +aad +tvt +nCM +cmr +wKb +pri +agj +qlI +cdB +xjt +coD +agc +ako +tYM +gLN +agj +aic +acS +wVW +asQ +awG +ayI +wVW +wbX +avY +avY +aAE +avY +wlE +gvq +wVW +lrW +mqh +vHW +wVW +ccg +aKz +mKq +ceK +rFs +gek +uvt +aES +aES +aES +aES +aES +gBd +tVx +fjz +hPu +rwZ +ajZ +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aac +aaf +aag +aag +sGw +vEI +dvD +eWs +nCe +tVZ +bkS +bfO +tWL +aLx +jHt +mVE +rgy +baN +anU +gEg +imy +gEg +dRD +bdV +bvf +tQL +bDn +bGu +bvf +fKt +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xyw +xxI +xyw +bHB +btO +bcm +bcm +bcm +bcm +bcm +hOV +pIC +hOV +qpV +nGk +kyP +aag +aag +aaf +ajY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(103,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +aaa +bdH +bdH +bdH +bdH +aaa +aad +tvt +mPw +cmr +wGa +bAy +agj +eBE +hvH +agc +rNa +pxG +fOv +agc +agc +agj +aic +sxW +wVW +jSc +atN +cEl +sOi +aqN +aqN +ixv +ixv +ixv +aDv +aqN +atP +aHR +aJI +wFn +wVW +aKn +aKz +mKq +bFC +jUb +qjz +ceK +sxD +bhJ +bHG +gCP +aES +imt +noE +dcT +hrI +rwZ +ajZ +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +oGf +dvD +eWs +uFf +mFi +eDv +xyQ +ixT +hBG +ngK +sqa +hBF +hCt +eXq +qYN +lsD +lkf +eXq +ooh +pcl +gHZ +pcl +aMY +pcl +xNb +aYt +fPu +leg +hYG +hYG +aYt +aYt +wFz +bAi +xyw +bnH +btO +cdA +lRX +rux +sEt +bcm +qyG +bUQ +bUQ +siT +bUQ +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(104,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +aaa +bdH +bdH +bdH +bdH +bdH +aad +tvt +qwY +cmr +cmr +mVA +agj +kSH +hvH +nTA +kWR +agc +aiW +xyk +xyk +mDX +aTl +dLe +wVW +atx +qEk +ajm +wVW +arP +alX +azZ +aAF +azZ +aIf +hkG +wVW +fvB +qEk +iaa +wVW +aKn +aKz +mKq +oKx +tVh +psa +ceK +aES +mhm +brS +bpe +aES +ioM +cZO +pfD +pfD +rwZ +ajZ +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +fzT +dvD +eWs +qmh +qmh +jHt +wSQ +rOv +wer +pKW +wqh +bHB +xyw +aho +dkj +xnZ +gYt +aho +aYt +pcl +gHZ +pcl +gHZ +pcl +uuu +fTm +xyw +lqK +hYG +hYG +hYG +aYt +aYt +bFP +xyw +bHB +btO +cdA +myo +dtH +eyR +bcm +rQs +xFt +bUQ +uKH +gsp +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(105,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +cZe +cZe +cZe +tiX +vcI +agj +ikQ +hvH +agc +qlp +pxG +tTk +agc +agc +agj +fXP +aov +wVW +atx +qEk +ato +wVW +aKF +alX +hxm +deD +tUo +aIf +aEB +wVW +fvB +qEk +iaa +wVW +aKn +aKz +mKq +aWk +aWW +aGr +uvt +aES +aES +aES +aES +aES +ied +cZO +nLp +nLp +nLp +ajZ +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +iPf +klT +eWs +vHp +gJp +qmh +wSQ +rOv +wer +pKW +wqh +bHB +vpW +eXq +aho +aho +aho +eXq +kqv +pcl +gHZ +pcl +gpi +pcl +oJp +bvf +kRP +bvf +bvf +bvf +vwW +iaj +xXk +vsF +bGJ +hBF +vxb +bcm +mhd +aYt +tuN +fPn +xFt +xFt +bUQ +uKH +eLC +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(106,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +bdH +aaa +aad +aag +aag +cZe +cmr +iNk +agj +muV +hvH +qck +eRi +agc +tan +kDK +iEz +agj +aic +aov +wVW +ssW +qEk +hrm +wVW +rOC +aqN +tCT +tCT +tCT +aDv +aEC +wVW +dNZ +qEk +mje +wVW +aKn +aKz +mKq +aWq +aXb +aGr +ceK +sxD +bhJ +bHG +cWy +aES +hrI +tVx +nLp +aag +aag +ajZ +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +cqp +xzB +smH +vnY +asE +qmh +wSQ +vop +tgy +jHt +vPM +bHB +xyw +anW +aYt +aYt +aYt +anW +aYt +pcl +gHZ +pcl +gHZ +pcl +brY +aYt +cSx +nPB +hYG +ggh +wvu +hif +uLc +xyw +bGK +bHB +btO +cdA +omP +aYt +bOC +bcm +bUQ +xFt +bUQ +uKH +rVc +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(107,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aad +aag +aag +cZe +huD +vAz +agj +mXj +fnv +hvH +hvH +iNY +hvH +hmV +mXj +agj +aic +aoA +wVW +atx +jvX +ato +wVW +vTu +alX +alX +avY +alX +aIf +aED +wVW +cWw +jvX +iaa +wVW +aKn +aKy +mKq +aWt +ceK +ceK +eua +aES +eBd +brS +cpj +aES +luE +wgO +nLp +aag +aag +ajZ +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +jOq +xzB +eWs +nso +jdZ +pqM +bZS +rlD +uUf +jHt +kCm +bHB +btO +bea +aoN +bea +bfZ +baS +bkh +bea +bfZ +baS +bkh +bea +bfZ +baS +bkh +ohE +vWJ +qUL +qwS +iEn +mMB +baS +bGL +bHB +aYt +cdA +ivg +llO +kSv +bcm +emC +dZZ +xmn +uKH +xFt +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(108,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aad +aag +aag +cZe +pcf +vAz +agj +agj +agj +agj +agj +agj +agj +agj +agj +agj +fEk +hlU +wVW +wVW +wVW +wVW +wVW +aCf +kcx +aCf +wVW +aCf +wpt +aCf +wVW +wVW +wVW +wVW +wVW +fDU +uiZ +mKq +mKq +kqt +aVX +aES +aES +aES +aES +aES +aES +hXD +tYV +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +dvD +qig +eWs +eXq +adR +eXq +aho +aho +aho +eXq +hmy +bHB +aZV +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGM +bHB +aqs +bcm +bcm +wXT +cdA +bcm +bcm +emC +emC +mTL +xFt +kyP +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(109,1,1) = {" +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +cZe +uTE +fZy +gpY +uBi +wYA +awW +awW +awW +awW +aSJ +goj +kAh +aic +aBW +aom +nmh +eco +vdL +laV +aqF +alX +alX +xQa +alX +aIf +aBS +laV +whB +gio +nmh +aKf +aKu +aKz +vjb +cZb +aXe +baw +oxu +baw +baw +oaK +nUn +pgD +tVx +hrI +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +dvD +dvD +eWs +abG +aeh +afy +xWp +aAL +aBt +ajM +aXh +bHB +aZW +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGN +bHB +xAY +gHZ +wlK +aYt +aYt +aYt +lrX +bcm +jGQ +siT +fFU +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(110,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +aag +aag +cZe +cmr +vAz +gpY +uac +vFw +ajf +ajf +ajf +ajf +oAO +oEf +aVW +vta +aBH +aKv +aKv +aKv +aKv +bYY +aCj +ayK +aAd +aAP +hvv +ayu +aCj +bYY +aKv +aKv +aKv +aTa +aTk +mtM +rmD +aWz +aZC +aZz +aZz +aZz +aZz +wUP +lrF +pgD +cZO +hrI +nLp +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +sGw +dvD +klT +eWs +abH +aer +agf +ais +aoL +akz +ajM +caM +bHB +aZX +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGO +bHB +xAY +gHZ +qCG +btO +btO +btO +uII +fPn +htq +siT +nGk +kyP +aag +aag +aag +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(111,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +abs +abs +abs +abs +abs +abs +abs +abs +cZe +aMf +wby +gpY +mto +acW +awW +awW +oGC +oGC +aSJ +goj +iff +bYz +aBX +rqb +aJw +aBX +aBX +laV +asc +ayL +aAf +aLM +wlE +alX +awk +laV +aBX +aKa +aJw +lLS +aKq +cPg +wPf +cZb +aXe +iVE +baw +baw +baw +sgU +baw +pgD +cyv +eKZ +nLp +tQV +tQV +tQV +tQV +tQV +tQV +tQV +tQV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aac +aaf +aaf +aag +aag +aag +aag +sGw +dvD +sZc +dGP +acq +aeJ +azl +ahV +khD +rYJ +ajM +xyw +bHB +aZY +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGP +bHB +xAY +gHZ +xJR +aYt +aYt +puI +iWx +bcm +ymg +uKH +bUQ +kyP +aag +aag +aag +aag +aaf +aaf +ajY +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(112,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +abs +adq +aeW +ajD +anM +oGC +add +aSA +bvb +afr +ajI +pYu +awW +acW +add +ryG +ohB +aiX +awd +awd +awd +awd +awd +awd +awd +awd +awd +wVW +ayv +ayM +aAj +aBI +aCk +aDK +aEG +wVW +awF +aIQ +awF +ecr +aJc +ecr +ecr +ecr +ohS +aET +nUv +aJU +aJU +sgU +baw +dqb +tiW +goL +mor +iKK +aJU +baw +mAp +mAp +lVl +pgD +tQV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +aag +aag +aag +aag +aag +aag +sGw +dvD +iQJ +eWs +acu +aeh +afF +xWp +azJ +bLP +eXq +eVm +bHB +aZV +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGM +bHB +tIS +bcm +bcm +wXT +cdA +bcm +bcm +bcm +emC +wuh +fgU +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(113,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +abs +adq +aea +ajE +awW +awW +add +aSJ +awW +bZe +ajI +awW +awW +acW +qdQ +eFT +hhA +weD +unT +kng +fDV +aiX +aiX +tAL +awX +tAL +awX +wVW +wVW +wVW +lMF +jnX +rdz +wVW +wVW +wVW +cbF +aGZ +awF +cST +aTz +aUl +aET +esC +nsQ +aET +mSi +wHp +gZw +sgU +baw +baw +tiW +nig +baw +aXe +aJU +baw +baw +baw +cxk +pgD +tQV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +aag +aag +aag +aag +aag +aag +sGw +nHX +cEA +eWs +acM +aer +agf +ais +xWp +aBw +ajM +xyw +bHB +aZW +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bFR +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGN +bHB +btO +cdA +apE +icp +fER +bcm +emC +hVL +bUQ +uKH +hSb +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(114,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abs +adq +aoy +awW +awW +awW +add +aoI +awW +aeZ +ajI +awW +uzy +abB +add +add +add +weD +nwL +amh +nwL +aiX +wbO +avU +avU +mKN +wEw +kOB +awZ +aiX +wLC +mGb +uOh +awF +aEM +aGV +rvA +aKE +awF +jzE +aUw +aUm +aET +aET +aET +aET +nUv +aJU +aJU +pIV +baw +baw +tiW +tTu +baw +gnv +aJU +baw +baw +baw +ciQ +pgD +tQV +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +xzB +hRA +eWs +acZ +aeN +azl +ahS +ajA +akz +ajM +xyw +bHB +aZX +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGO +bHB +aYt +cdA +uiT +aYt +jyR +bcm +fUZ +xFt +bUQ +uKH +eyM +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(115,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abw +adr +awW +ajH +ajf +abf +aEQ +ajf +ajf +ajf +teo +abf +ajf +evX +aeZ +aka +aoI +weD +fdE +amh +amh +aiX +cJu +pXx +pXx +pXx +pXx +jrm +evg +aiX +iiU +eAx +cmS +awF +aFg +aGY +rvA +aKN +awF +cbm +aUw +aUm +aUw +aRv +pPv +aET +nPa +yhI +tTu +gVF +aZz +cts +tvw +aZz +aZz +aZz +ejY +cts +aZz +kyX +baw +gCf +trb +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +xzB +ghA +eWs +vhw +khD +azw +xWp +aAK +aBz +ajM +aXj +bHB +aZY +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGP +bHB +vxb +bcm +apL +aYt +iKb +bcm +umk +xFt +bUQ +siT +qBl +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(116,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abw +adP +awW +acW +awW +add +add +add +stu +add +add +add +oMQ +evX +afr +akc +buc +weD +jMm +pcG +iFn +qnD +amh +kWT +wUR +wUR +wWC +auZ +aiX +aiX +qmK +oIp +pTS +awF +hRk +aGY +rvA +aKO +awF +aRx +aRx +aUo +aVi +pbp +pMj +awS +lWr +csI +goL +sgU +baw +aJU +aJU +aJU +tBu +aJU +aJU +aJU +hEV +eBe +baw +xYQ +trb +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +nkj +rjF +eWs +eXq +eXq +eXq +eXq +eXq +eXq +eXq +mrD +bHB +aZV +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGM +bHB +btO +cdA +uiT +aYt +xNj +bcm +hSb +xFt +bUQ +uKH +pTX +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(117,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abs +adq +dpo +ajI +add +add +uWj +yfz +yfz +yfz +cSi +add +add +ajI +add +add +gqP +aiX +aiX +aiX +aiX +aiX +oqw +lvA +osT +cZV +pQV +apq +ana +aiX +gwh +oIp +qUK +awF +gyh +lmA +rvA +aqm +awF +dOl +aTA +aUp +qVC +aUw +jmP +awS +xhn +aJU +aJU +tiW +aJU +qQp +whF +xZs +xZs +xZs +eBJ +aJU +aJU +tiW +msg +pgD +tQV +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +xzB +oes +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +aXj +bHB +aZW +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGN +bHB +btO +cdA +fpW +llO +vml +bcm +emC +rVc +rVc +uKH +nBF +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(118,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abs +adq +myl +ajI +add +fsU +ieH +aTm +xxB +aTm +oZX +fsU +add +ajI +add +add +add +gzI +fdE +mLz +iFn +alw +amh +dGr +rtY +fJy +xQg +wWC +szO +aiX +jkT +oIp +fNX +awF +awF +aEW +aHX +aEW +awF +aRB +qVC +wvb +eem +aUw +aUw +awS +nJs +aJU +aJU +tiW +aJU +gBW +ixL +iun +sfA +vPm +iwm +gBW +aJU +tiW +qgU +pgD +tQV +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +dvD +oes +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +xyw +bHB +aZX +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +baI +bGO +bHB +uAb +bcm +emC +hvx +emC +emC +emC +emC +emC +qpV +bUQ +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(119,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaC +abw +aee +avd +acW +awW +sAn +okG +aTm +cpP +aTm +gYW +hzS +awW +acW +aeZ +aka +aoI +gzI +nwL +mfQ +nPx +aiX +amd +dXY +fmB +umS +yjM +qbO +aqw +hnI +dME +oIp +oGI +waP +awF +nvG +vGI +aLp +awF +jss +aTB +aUq +aVk +ldC +vkb +aET +eFM +yhI +tTu +sgU +baw +dsn +hxX +vbB +aqB +vbB +rko +rAT +baw +sgU +xVF +njD +trb +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +dvD +iQJ +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +hmy +bHB +aZL +baX +bcw +beg +bgj +baX +bks +beg +bgj +baX +bks +beg +bgj +baX +bks +beg +bgj +baX +bks +beg +bEN +baX +bcp +bHB +xAY +aYz +emC +bUQ +wDP +mHF +hhg +emC +qBl +uKH +bUQ +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(120,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaY +abw +aec +avd +acW +awW +tYQ +eBj +aTm +cpP +cbM +xKs +lqM +awW +acW +afr +akc +xVI +gzI +aku +eGH +qnl +aiX +apt +sCI +pWN +uTN +aqy +nBE +pOD +bZa +voj +sUS +oGI +qUu +awF +aHn +szU +fGa +awF +aRC +aUw +aUw +aUw +aUw +jmP +aET +dSp +csI +goL +sgU +baw +wQh +bVx +vbB +aqB +vbB +tyo +vGz +baw +sgU +xVF +dLz +trb +aaC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +xzB +oes +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +xyw +bHB +wqh +xyw +bcc +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +aYt +wqh +xyw +bcc +bHB +xAY +aYz +emC +vFI +xFt +xFt +bUQ +wdG +xFt +siT +nGk +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(121,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaY +abs +adq +tGj +ajI +add +fsU +ieH +aTm +fnk +aTm +oZX +fsU +add +ajI +add +add +vmN +aiX +aiX +aiX +aiX +aiX +awq +lvA +pQV +mHO +aiX +aiX +aiX +aiX +diw +oIp +wCn +tsr +tsr +tsr +tsr +tsr +tsr +aRE +qVC +qVC +prE +aUw +aUw +awS +nJs +aJU +aJU +tiW +aJU +gBW +ixL +vbB +aqB +tBq +iwm +gBW +aJU +tiW +bpw +pgD +tQV +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +fzx +cEA +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +bGQ +bHB +tdc +rOc +bcx +bPr +bPr +bPr +byv +bdI +rBb +ehi +mha +kTY +ehi +mha +rBb +bdI +bPr +bPr +bPr +byv +bEO +rOc +fVz +bHB +uII +ruz +emC +jev +aML +xFt +oFn +emC +jaI +siT +xFt +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(122,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaY +abs +adq +aeY +ajI +add +add +uhu +lZH +lZH +lZH +hmn +add +add +ajI +add +add +add +rwY +fdE +feS +iFn +alw +kFe +mJL +qbO +wbu +aiX +aKG +amb +aiX +hOd +oIp +qUK +tsr +sOL +jIC +lFr +wTu +tsr +aSq +aTE +aTE +aTE +aTE +jLs +awS +nJs +aJU +aJU +tiW +aJU +aJU +wEq +xtT +xtT +xtT +xfr +aJU +aJU +tiW +usm +pgD +tQV +aaY +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +aag +aag +aag +aag +aag +aag +sGw +xzB +rsP +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +bGR +bHB +xyw +bkA +bkA +bkA +bkA +bkA +bkA +bkA +baZ +qOf +rIj +baZ +qOf +bqH +baZ +gfW +gfW +gfW +gfW +gfW +gfW +gfW +xyw +bHB +uII +wrT +emC +fqb +ury +dFW +mvi +emC +daF +siT +fFU +kyP +aag +aag +aag +aag +aag +aag +ajZ +aaY +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(123,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaY +abw +adP +awW +ajT +aoC +add +add +add +stu +add +add +add +awW +acW +aeZ +aka +aoI +rwY +nwL +amh +nPx +aiX +aiX +uOJ +pqc +pqc +aqz +aKH +and +aiX +aaE +oIp +dME +fyT +xIV +xIV +edV +reM +tsr +aSt +aTE +aTE +aTE +aTE +qdA +awS +tvQ +yhI +tTu +sgU +baw +aJU +aJU +aJU +nnX +aJU +aJU +aJU +baw +sgU +baw +xYQ +trb +aaY +bdH +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +sGw +sGw +sGw +sGw +sGw +sGw +sGw +dvD +iOX +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +xyw +bHB +xyw +bkA +bnj +kPx +bgk +biq +dvg +nvM +bnI +qjN +qjN +rdS +qjN +qjN +tGh +gfW +sgj +bDv +bDv +bDv +bEP +gfW +bGQ +bHB +qnd +lFp +lFp +lFp +lFp +lFp +lFp +lFp +ljm +siT +xFt +kyP +kyP +kyP +kyP +kyP +kyP +kyP +ajZ +aaY +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(124,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaY +abw +adr +awW +ajV +ajf +abf +aEQ +ajf +ajf +ajf +aEQ +abf +ajf +evX +afr +akc +buc +rwY +akv +eGH +qnl +aiX +fuz +pLW +sht +wex +aiX +aiX +aiX +aiX +qIF +oIp +aPV +tsr +iPN +dbX +rGL +cyL +tsr +aSx +aTE +aTG +aVr +aUC +tTD +aET +ngf +bAH +goL +gVF +aZz +cts +ejY +aZz +aZz +aZz +ejY +cts +aZz +nsc +ltA +gCf +trb +aaY +bdH +bdH +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +sGw +lrH +dvD +xzB +xzB +xzB +dvD +dvD +wsz +eWs +aRu +aRu +aRu +aRu +aRu +aRu +bcm +aYu +wTg +bGq +bkA +bcz +bej +bej +bej +bzS +nvM +vyu +qjN +qjN +qjN +qjN +qjN +bei +gfW +bkN +ezG +fdZ +bzg +pqi +gfW +rHw +wTg +aYu +lFp +ddw +gHl +kjD +gHl +qoL +lFp +hSb +siT +xFt +bUQ +bUQ +gQQ +bUQ +cOt +uSU +kyP +ajZ +aaY +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(125,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaY +abs +adq +aoy +awW +awW +awW +add +apg +awW +afr +add +awW +awW +abB +add +xWO +aiX +aiX +aau +aau +aau +aau +uVX +ase +sht +uOJ +aqz +mBe +atT +aiX +bhR +oIp +mYA +tsr +tsr +vOY +tsr +tsr +tsr +lIj +mVF +lIj +lIj +lIj +lIj +lIj +pgD +nUv +aJU +pIV +baw +baw +aJU +goL +baw +vpn +aJU +baw +baw +baw +ciQ +pgD +tQV +aaY +bdH +bdH +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaY +aad +sGw +xzB +xzB +dvD +dvD +sZc +abj +mUE +coo +lnu +lnu +lnu +lnu +lnu +aRu +aRu +bcm +aZZ +aYC +aZZ +bkA +bcA +bgm +bgm +bgl +bpz +biu +kdB +kdB +udr +bqL +bqL +bqL +bqL +bkz +uSS +pIU +uSS +uDA +bER +gfW +aZZ +aYC +aZZ +lFp +mgd +wfn +aId +aId +poA +lFp +hSb +uGU +kGi +kGi +khI +kGi +kGi +kow +qBl +kyP +ajZ +aaY +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(126,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +aeX +awW +awW +awW +add +aSJ +awW +bZe +add +awW +awW +acW +qdQ +muq +aiX +aiX +aau +dBs +dBs +aau +fuz +tld +uOJ +mHO +aiX +asf +atT +aiX +hOd +lSN +qUK +lIj +tBY +gkE +cTM +rqD +pcY +srO +srO +lWO +wjQ +uag +uag +jnh +pgD +lza +gZw +gVF +kuk +baw +aJU +nig +baw +aXe +aJU +baw +baw +baw +cxk +pgD +tQV +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +dvD +dvD +eWs +jri +iOX +kIl +jmz +hsK +lnu +bjZ +bjZ +bjZ +lnu +sGU +wfE +wfE +yap +bqg +eIO +bkA +eFG +bej +arX +vSG +iag +nvM +qOZ +qjN +gGJ +ham +qjN +qjN +oWf +gfW +xgJ +fdZ +bnS +fdZ +tzx +gfW +rZt +qyP +tuC +lFp +lGg +aId +aId +aId +jFx +nmY +nmY +nmY +nmY +nmY +nmY +nmY +nmY +siT +bUQ +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(127,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +awW +awW +awW +oGC +ryG +aVL +bBl +aeZ +ryG +oGC +awW +acW +add +bny +aiX +aiX +aiX +vwV +vwV +aiX +aiX +aiX +sHM +kUh +aiX +aiX +aiX +aiX +wmo +icQ +pwl +lIj +lIj +dvZ +lIj +lIj +lIj +lIj +lIj +lIj +lIj +lIj +lIj +tWF +pgD +nUv +aJU +sgU +baw +baw +aJU +bnZ +cIe +jez +aJU +baw +baw +baw +baw +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +dvD +dvD +wfE +wfE +rXv +wfE +wfE +wfE +wfE +kox +kox +kox +wfE +bsD +btr +wfE +kLE +lIu +kLE +bkA +bcC +bej +tzO +fVG +qpQ +nvM +qOZ +qjN +sld +ham +ham +qjN +oDY +wCi +eTC +fdZ +ixj +fdZ +uey +gfW +kSA +tpB +kSA +lFp +xDF +eRS +aId +aId +tMc +nmY +ouw +jDP +aId +xHS +tEd +vjW +nmY +siT +bUQ +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(128,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +aei +aka +aWn +gLl +gLl +gLl +gLl +gLl +gLl +oGC +awW +acW +awW +awW +awW +fSm +hiy +esQ +iKy +iKy +oyB +iKy +dME +dME +gJC +iKy +udv +iKy +iKy +gji +iKy +iKy +udv +oGW +gJC +iKy +iKy +iKy +iKy +oyB +iKy +kmT +pEY +jsP +baw +fGg +baw +sgU +baw +baw +vIo +vIo +vIo +vIo +vIo +vIo +gnv +yhI +tTu +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +dvD +dvD +wfE +mcL +jOo +wrC +mHx +pqX +evC +xbk +wFR +wFR +bmF +wFR +xbk +aWw +cJK +oGL +hOu +bkA +eUn +bcD +qpx +bet +bgu +nvM +qOZ +qjN +gGJ +ham +qjN +qjN +qyD +wCi +blZ +bqN +nTo +bqN +bwR +gfW +oJL +jMa +cVt +sHm +ddM +hZe +aId +aId +rNK +nmY +nmY +nmY +dZu +dKK +dKK +xry +nmY +siT +bUQ +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(129,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +afr +akc +apg +gLl +mis +mis +mis +yjr +gLl +aea +oGC +xjD +ajf +ajf +ajf +oAO +pIZ +nsr +fSx +tTZ +tTZ +tTZ +dNj +tTZ +tTZ +pcs +fCW +fCW +tTZ +bjv +tTZ +dNj +dNj +ubv +plK +plK +tuX +plK +plK +plK +fSx +xFx +tFW +dGC +aZz +aZz +aZz +nsc +baw +cxk +vIo +ojX +ojX +ojX +mxo +vIo +crh +csI +qhb +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +xiH +xzB +wfE +dgl +jOo +xbk +mub +mub +mub +xbk +rkz +esM +esM +uUi +xbk +aWw +gtD +uRD +wru +bkA +hGh +hGh +bcK +hGh +hGh +bkA +vwF +nEJ +ben +qjN +qjN +qjN +hpN +gfW +omo +wkc +gfW +uFo +omo +gfW +eWx +lLO +juo +otq +gJO +pwG +aId +aId +wUK +dDM +vPR +nmY +aId +vXf +qGw +uZV +nmY +uKH +bUQ +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(130,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +nfC +akt +awW +gLl +mis +mis +mis +mis +gLl +oGC +sHp +oGC +awW +awW +awW +aSJ +isI +gvu +xCB +nyK +llo +epT +llo +llo +pub +llo +llo +llo +llo +aVK +llo +pub +llo +llo +llo +llo +llo +epT +llo +aWM +xCB +tJm +dCD +aXe +baw +baw +baw +mnA +baw +baw +vIo +ojX +ojX +ojX +ojX +vIo +baw +sMM +rSH +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +jOq +xzB +wfE +krp +jOo +aGn +oDv +wFR +gxO +vnD +wFR +wFR +wFR +soA +xbk +wfE +xos +uRD +qPk +bCd +iey +baf +kws +vSn +vSn +mvI +lqF +qjN +gGJ +qjN +qjN +qjN +pjw +qdz +bmb +bsj +bPk +bsj +byb +bCd +knm +lLO +knm +yfy +ruL +qUZ +aId +hJI +vwY +uIA +acd +ruL +aId +kyh +dKK +xry +nmY +qpV +hNh +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(131,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +aec +avd +akt +awW +qHq +mis +mis +mis +mis +gLl +eHX +gLl +gLl +gLl +gLl +gLl +gLl +gLl +gvu +xCB +tJm +rnN +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +rnN +gvu +xCB +kaj +vIo +vIo +vIo +vIo +vIo +vIo +xDy +vIo +vIo +ojX +ojX +ojX +ojX +eOM +baw +sMM +xVF +dLz +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +eoE +xzB +wfE +eiP +qOp +rOJ +vYm +vYm +vYm +fsp +qtv +qtv +qtv +xFZ +btx +naV +pij +kJh +qPk +bCd +tmg +qjN +qjN +qjN +qjN +qjN +qjN +qjN +gGJ +qjN +qjN +qjN +qjN +tzP +tzP +qjN +qjN +tzP +wYK +bCd +knm +lLO +knm +yfy +ruL +gsd +aId +oqt +wCk +aId +lab +ruL +aId +hgD +pSQ +dOe +nmY +rEK +bba +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(132,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +aGP +aka +aWu +gLl +mis +mis +mis +mis +gLl +lNL +kUJ +qgn +eIf +mfL +hto +qhg +gLl +pzw +xCB +vih +aoe +aoe +jHQ +hQU +hQU +hQU +hQU +dSJ +hQU +hQU +mcW +hQU +vbS +imp +fYb +cnV +isN +aoe +aoe +hwB +xCB +tJm +vIo +giD +giD +wrI +lST +wrI +pep +mCJ +vIo +ojX +ojX +ojX +ojX +vIo +hWB +yhI +qSX +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +jIJ +xzB +wfE +fHz +opD +aGn +nTZ +wFR +lah +vnD +iRy +esM +esM +jpt +xbk +aWw +qPk +hKe +uJM +baZ +bep +qjN +qjN +qjN +cle +qjN +qjN +qjN +gGJ +qjN +qjN +qjN +qjN +qjN +cle +qjN +qjN +qjN +imo +baZ +sbE +lLO +knm +yfy +ruL +xPq +aId +vjv +gOR +aId +ary +nmY +nZm +smW +prP +xXl +nmY +idL +gnM +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(133,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aaa +aaa +aaa +aaa +abs +adq +aGQ +akc +apg +gLl +mis +mis +mis +mis +gLl +gtI +utp +cZq +xBW +cZq +utp +gtI +kYF +dME +nbH +wpu +aoe +aoh +aor +aor +aoq +aoq +aoq +ccs +aoq +aoq +aoq +aoq +aoq +imp +gzJ +aEi +xur +coa +aoe +lXR +nbH +dME +lST +wrI +pep +pep +vIo +fzt +wrI +wrI +vIo +ojX +ojX +ojX +ojX +vIo +wvj +csI +iPH +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +xzB +dvD +sGU +iYx +opD +xbk +msZ +msZ +msZ +xbk +wFR +ldt +nEF +tXi +pcE +aWw +qPk +hKe +qPk +hqW +qjN +qjN +hDX +bei +xgh +mlH +cAF +eEk +kDR +maI +ujz +ljO +kdB +bmO +xgh +mlH +hDX +qjN +qjN +jpp +knm +lLO +knm +hnP +lFp +xlO +aId +oqt +iXA +aId +oZy +naw +npA +oqt +oEy +qmY +tUN +siT +lZb +kyP +ajZ +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(134,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abs +aee +avd +akt +qWI +gLl +gLl +gLl +gLl +gLl +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +lXR +lYS +mzn +hSI +qQc +pMp +xZt +hVz +hVz +dfa +rxc +arb +arb +arb +aEN +aor +eSN +sKa +jBy +aEi +aHa +aoe +gvu +nbH +tJm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +vIo +vIo +vIo +vIo +vIo +ehj +irS +ilJ +njD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +xzB +dvD +wfE +gww +opD +wFR +wFR +aqn +arT +xbk +jfZ +kqK +ljf +maL +uKe +aWw +qPk +ckh +gyn +vcq +qPS +qPS +qim +qPS +vln +mKw +rcx +kan +ojZ +toS +ojZ +kan +leY +tYi +uYa +bqL +iaF +bqL +bqL +ocf +wwE +sAD +cIO +tAb +vpe +dxT +olN +jDk +uNq +tOu +qyK +mkn +tHQ +uxX +oZy +orN +nmY +lQf +tHk +kyP +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(135,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abs +adq +nAv +akt +awW +gLl +vHP +wQI +cIS +cIS +gxm +sWb +sWb +sWb +dkO +aps +aps +aps +gxm +gpp +xCB +tJm +aoe +aoe +aoe +aoe +aoe +aor +aor +aoq +aoq +aor +aor +aCw +aGW +aGW +aGW +fvd +hFF +aoe +aoe +gvu +xCB +tJm +gxm +aiJ +aiJ +aiJ +qYr +kEA +kEA +kEA +gxm +qTA +bMZ +pep +qTA +vIo +baw +sMM +noO +pgD +tQV +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +nkj +dvD +wfE +rYi +opD +wFR +wFR +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +qPk +hKe +uJM +baZ +eyQ +qjN +qjN +qjN +qjN +gGJ +bqR +vhX +gls +cAm +bwH +vhX +xqv +gGJ +qjN +qjN +qjN +bho +xtM +baZ +sbE +jZe +cbL +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +iZE +oqt +oZy +qhD +nmY +siT +xFt +kyP +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(136,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abs +adq +aWm +aka +kyY +gLl +lfZ +lWS +gtI +gtI +gxm +sWb +sWb +sWb +vQe +aps +aps +aps +gxm +sHC +nbH +pjO +ajl +aop +koB +aRF +aoe +jkl +mNI +jkl +ayW +bqa +lFn +aLS +aGW +rSq +tsC +uRt +aQz +aRJ +ajl +gvu +nbH +tJm +gxm +aiJ +aiJ +aiJ +str +kEA +kEA +kEA +gxm +bMZ +pep +pep +osr +vIo +rQW +yhI +rRz +pgD +tQV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +xzB +dvD +wfE +cVK +opD +oRO +ren +wDr +aeL +aeL +aeL +oLj +wNG +wNG +wNG +wDr +qZT +pSF +eZC +bCd +mlH +bqR +cle +tYw +tlA +nyj +vVW +vhX +ctJ +rlZ +pGE +vhX +jCK +nyj +tlA +bwT +cle +bCe +sdO +bCd +hBW +dxJ +rdT +wDr +mQx +mQx +mQx +jsa +azy +azy +azy +wDr +kJH +oqt +qlm +kRD +nmY +uKH +xFt +kyP +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(137,1,1) = {" +aaa +aaa +aab +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +abs +adq +afr +akc +apg +gLl +gLl +nlI +utp +usu +gxm +sRZ +sRZ +sRZ +vQe +aps +aps +aps +gxm +gvu +nbH +tJm +ajl +ajl +gzK +ajl +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aGW +anq +tsC +uRt +onQ +aRK +ajl +aUB +nbH +tJm +gxm +aiJ +aiJ +aiJ +str +jcu +jcu +jcu +gxm +cAa +pep +wrI +vIo +vIo +vpn +csI +goL +pgD +tQV +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aad +sGw +xzB +esm +wfE +wfE +viJ +wfE +wfE +wDr +aeL +aeL +aeL +uZm +wNG +wNG +wNG +wDr +qPk +hKe +qPk +bCd +bmn +knH +kan +kan +oKv +rHo +kan +kan +kan +jXf +kan +kan +kan +cbu +quT +kan +kan +iXW +iLs +bCd +knm +jZe +knm +wDr +mQx +mQx +mQx +guK +azy +azy +azy +wDr +euW +rOI +aId +hQP +nmY +qpV +bUQ +kyP +ajZ +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(138,1,1) = {" +aaa +aaa +aab +bdH +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +abw +eJU +awW +akt +awW +cUo +dwu +utp +qxS +usu +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +lSN +tJm +ajl +pjF +wUd +wub +asU +ajl +ajl +ajl +mrL +rGc +yjb +ajl +sqf +dwA +tsC +uRt +fOL +aRS +ajl +sHC +xCB +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +bMZ +qTA +wrI +lST +aJU +baw +sMM +baw +gFd +trb +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +dvD +xzB +pIo +xzB +xzB +fQy +nAm +wDr +aeL +aeL +aeL +uZm +kaq +kaq +kaq +wDr +qPk +hKe +qqf +kan +kan +kan +kan +xdx +rlZ +egc +thP +beW +ygf +rlZ +fqZ +beW +bgP +psK +rlZ +cFP +kan +kan +kan +kan +tzw +sPY +knm +wDr +wQu +wQu +wQu +guK +azy +azy +azy +wDr +sJI +aId +aId +hQP +nmY +uKH +bUQ +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +aaa +aab +aaa +aaa +"} +(139,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abw +eJU +awW +akt +vCt +gLl +gLl +gLl +gLl +gLl +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +nbH +tJm +ajl +qhx +hbI +uGk +fFh +ajl +ajl +nHP +xNu +mfC +aCo +aEO +sqf +sqf +cXW +upM +akw +vtx +vEx +dME +nbH +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +vIo +vIo +vIo +vIo +vIo +nTH +sMM +baw +teg +trb +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKU +aKS +aKS +aKS +aKS +aKS +aKS +aKU +aKS +aLL +vtJ +stP +eWs +hKO +eoE +lrH +kdo +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk +kan +mBk +oDJ +vaQ +iTt +rlZ +buu +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +buu +rlZ +dTZ +kan +psO +gjK +kan +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +ePN +aId +aId +hQP +nmY +xUY +wGe +bSf +bWe +bWn +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWn +bWe +bWe +bWe +bWn +bWe +bVU +aaa +aab +aaa +aaa +"} +(140,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abs +adq +aeZ +aka +aoI +gLl +mis +mis +mis +yjr +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +nbH +tJm +ajl +ajl +ajl +fnA +ajl +ajl +xNu +aCo +rHz +xiu +mMg +kbn +aCo +ajl +iGA +aos +akw +txW +ajl +bgN +nbH +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +ojX +ojX +ojX +mxo +vIo +gnv +yhI +tTu +pgD +tQV +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +pzG +bby +aLL +aLL +frz +aLL +aLL +aLL +aLL +aLL +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk +kan +vou +dYU +kan +cWm +soK +gDW +rlZ +rlZ +pqD +pqD +pqD +rlZ +rlZ +gYl +frl +wFb +wzZ +tdI +vbV +kan +knm +jZe +knm +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +bSf +bSf +auW +bSf +bSf +ued +bSf +bSf +cml +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWo +bWe +bVU +aaa +aab +aaa +aaa +"} +(141,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abs +adq +afr +akc +apg +gLl +mis +mis +mis +mis +gxm +aoz +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +xCB +tJm +ajl +sOZ +oNJ +axm +eDo +ajl +pth +akl +pWU +gXl +hSo +xdS +awj +ajl +aLZ +akw +akw +alD +gWG +gvu +xCB +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +kbl +gxm +ojX +ojX +ojX +ojX +vIo +vpn +csI +goL +pgD +tQV +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz +aLL +etF +bbS +aLL +coT +fgh +rZP +gmj +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +iGi +pSF +eZC +bst +bst +bst +bst +bst +bst +oou +rlZ +rlZ +tiI +hDR +oZV +rlZ +rlZ +xMj +biA +biA +biA +biA +biA +biA +hBW +ltv +uYM +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +wcN +nGi +bVd +bUO +bSf +weC +tZc +bSf +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(142,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abw +eJU +awW +akt +awW +avJ +mis +mis +mis +mis +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +lSN +kaj +ajl +cnZ +akw +xsz +jTj +ajl +yjb +tgl +xgP +axm +wJo +uol +anp +ajl +nzv +fQu +rrD +vQN +gWG +gvu +xCB +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +ojX +ojX +ojX +ojX +qxz +baw +sMM +baw +wiz +trb +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz +aLL +fXz +bbS +aLL +uUt +aLW +aLW +guS +wDr +aiR +aiR +aiR +wDr +hwH +hwH +srR +wDr +cvg +hKe +qPk +bst +bui +bvz +bgC +xfT +bkE +bJw +rlZ +hBc +hzs +bHg +hzs +aZK +rlZ +hYn +cpJ +lQO +bsQ +bmj +caS +biA +knm +sPY +jxu +wDr +oVk +ydA +ydA +wDr +azD +azD +azD +wDr +wgR +bTO +bTO +sYP +bSf +cpk +bVd +bSf +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(143,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abw +eJU +awW +akt +aAn +gLl +mis +mis +mis +mis +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +gvu +xCB +tJm +ajl +anr +eme +tEi +asu +ajl +ajl +ePX +vtx +axm +akw +sLq +ajl +ajl +ajl +fEC +akx +ajl +ajl +evM +xCB +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +ojX +ojX +ojX +ojX +vIo +xuY +sMM +baw +oby +trb +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz +bdy +bbS +bbS +bdy +bbS +xka +uLn +uoA +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk +bst +bcR +bev +bgA +eas +bkE +bLr +qni +hQY +qni +qni +qni +hQY +qni +lJG +cpJ +kRd +bCl +bsz +caT +biA +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +hkB +bTO +qSm +cls +xoJ +weC +cls +bWc +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(144,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abs +adq +aeZ +aka +aoI +gLl +mis +mis +mis +mis +gxm +lmG +lmG +lmG +gxm +asm +asm +asm +gxm +hwB +xCB +tJm +ajl +skl +awp +axm +jZY +wDH +ajl +ajl +sdn +axm +dDL +ajl +ajl +nMV +lhv +aBd +alE +wjz +ajl +lXR +xCB +tJm +gxm +alW +alW +alW +gxm +mWJ +mWJ +mWJ +gxm +ojX +ojX +ojX +ojX +vIo +gnv +yhI +tTu +pgD +tQV +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +pDo +aLL +aON +xYB +aLL +rlh +aLW +aLW +gxh +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +qPk +hKe +tON +bst +bcS +bag +bgz +elE +bgv +bPz +dTZ +qxL +sYh +rlZ +dTZ +qxL +sYh +fFL +bmc +jdG +bCm +bsP +hgZ +biA +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +wjC +bTO +xMf +unh +bSf +weC +rfI +bSf +qzc +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(145,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abs +adq +sSj +akc +rMh +gLl +gLl +gLl +gLl +gLl +gxm +qqa +qqa +qqa +gxm +gxm +gxm +gxm +gxm +atz +nbH +tyC +ajl +gKR +gKR +axl +gKR +gKR +ajl +ajl +ajl +fbB +ajl +ajl +kEp +tWY +sYT +pJl +akw +vIf +ajl +hwB +nbH +yeg +gxm +gxm +gxm +gxm +gxm +qqa +qqa +qqa +gxm +vIo +vIo +vIo +vIo +vIo +crh +csI +qhb +pgD +tQV +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbz +aLL +etF +bbS +aLL +djQ +nFs +aLW +gFa +wDr +aiR +aiR +aiR +wDr +hwH +hwH +hwH +wDr +qPk +hKe +qPk +bst +buj +bev +dBO +waD +bkE +bQM +rlZ +izY +xsw +bZn +kFv +izY +rlZ +hZN +cpJ +tni +bCn +bsz +hMN +biA +knm +sPY +knm +wDr +ydA +ydA +ydA +wDr +azD +azD +azD +wDr +xad +roG +mZr +eax +bSf +fvN +tZc +bSf +cmm +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(146,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abw +eJU +awW +awW +awW +wAE +iKy +iKy +iKy +iKy +tMi +lCg +knb +knb +jsd +iKy +iKy +udv +iKy +gre +nbH +dME +bVE +ans +ans +axm +ans +aGX +eto +ans +ans +axm +ans +aGX +fFO +akw +akw +akw +akw +akw +bVE +dME +nbH +kPa +iKy +gDk +iKy +iKy +gOa +lCg +lCg +lCg +ccx +iKy +iKy +iKy +iKy +wAE +mGM +baw +qYC +kwo +trb +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +aKS +bbA +aLL +aLL +frz +aLL +aLL +aLL +aLL +hrF +wDr +wDr +wDr +wDr +wDr +jXR +enK +enK +wDr +kgt +hKe +qPk +bst +aYQ +bbd +bcL +bez +bkE +bRP +rlZ +rlZ +phW +kan +eTB +rlZ +rlZ +siW +cpJ +bmi +bnT +btX +byc +biA +knm +sPY +qPU +wDr +sai +sai +wrN +wDr +wDr +wDr +wDr +wDr +bSf +bSf +auX +bSf +bSf +ued +bSf +bSf +cmn +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bVU +aaa +aab +aaa +aaa +"} +(147,1,1) = {" +aaa +aaa +aab +bdH +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abw +eJU +awW +aTm +awW +wAE +qQu +qQu +qQu +qQu +kVW +kVW +oFz +oFz +oFz +qQu +dcR +dcR +dcR +dcR +hWa +cEG +aEe +akA +kln +asw +akA +jOG +akA +akA +akA +fXg +akA +akA +akA +maT +akA +awn +oap +aSb +aEe +cEG +rxQ +dcR +dcR +dcR +dcR +qQu +oFz +oFz +oFz +kVW +kVW +qQu +qQu +qQu +qQu +wAE +ley +vbB +ley +kwo +trb +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKS +aKS +aKS +aKS +aKS +aKV +aKS +aKS +aKS +aKS +aKS +aKS +aKV +aKS +aLL +qVE +iGc +bwG +hCk +nRN +mzI +olQ +oCK +eob +gMk +qRb +axY +xrC +oWF +xrC +toQ +exl +qyX +qPk +bst +bst +bst +bst +bst +bst +cjW +rlZ +rlZ +pnC +dBH +biy +boX +rlZ +vMG +biA +biA +biA +biA +biA +biA +wHn +rDO +cIO +rEd +fml +fqU +bIO +rSA +cIm +emw +bvD +gZW +lUA +bwv +hDU +iNH +cDx +ndl +iDk +bSf +bWe +bWp +bWe +bWe +bWe +bWe +bWe +bWe +bWe +bWp +bWe +bWe +bWe +bWp +bWe +bVU +aaa +aab +aaa +aaa +"} +(148,1,1) = {" +aaa +aaa +aab +bdH +aae +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +abs +abs +awW +vGQ +ajE +wAE +dME +epT +dME +aVK +llo +llo +llo +llo +epT +llo +llo +llo +llo +aWM +lSN +tJm +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +wMO +wky +sqf +bgN +lSN +nyK +llo +epT +llo +llo +llo +llo +llo +llo +epT +llo +dME +bRO +llo +wAE +saX +dBp +gVA +tQV +tQV +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +aah +afm +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +aKR +deq +lfx +jgK +lfx +lfx +yih +kgD +deq +bwG +vVy +gtD +vEv +cvI +cvI +cvI +aza +qPk +wKN +qPk +kan +ihw +beW +lkW +biF +vhX +akQ +rlZ +rlZ +duO +dBH +bky +ryt +rlZ +wYS +vhX +jva +tAU +xmT +tAU +kan +knm +sPY +knm +qEM +wzy +wzy +wzy +qEM +juo +seL +siC +jNw +xuy +juo +vqz +vMU +mJO +vDN +xbg +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +bVU +aaa +aab +aaa +aaa +"} +(149,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +biV +aet +biV +aet +ekY +aet +ekY +aet +abE +abE +abE +abE +abE +abE +abE +abE +abE +cXq +bXc +vZJ +vOy +nos +fcy +drT +ipQ +lZZ +vOy +oDL +nEH +vAQ +qIL +ncE +vWt +gei +vOy +ayX +kXw +pxo +sqf +lPY +bXc +vZJ +pBG +pBG +pBG +pBG +pBG +pBG +pBG +pBG +pBG +pBG +oiq +mRU +mRU +mRU +mRU +mRU +mRU +woU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +kyw +deq +lfx +bwG +aQF +aQF +aQF +aQF +szE +aQF +ihW +qOS +vEv +xkN +dwj +xkN +aza +qPk +hKe +qPk +kan +iMI +rlZ +rlZ +rlZ +qep +cnr +qqK +qqK +ayD +dBH +bky +ryt +rlZ +buu +uXf +wxq +wJb +wJb +bPu +kan +knm +sPY +knm +qEM +hEg +ewc +lLl +qEM +jvD +cBV +mJO +mJO +mJO +bTq +mJO +mJO +mJO +mgb +xbg +lyW +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(150,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acv +aiH +alf +arp +arp +aiH +aiH +aiH +aet +kPB +aci +aci +aci +aci +gwo +aed +aeG +abE +rSW +dNv +rSW +vOy +oNp +aSn +lYL +pNP +kCj +vOy +nLI +rDV +dwr +rDV +mTd +gQF +xXr +vOy +niL +kXw +pxo +sqf +rSW +dYl +rSW +pBG +rdZ +rdZ +rdZ +rdZ +bCs +pBG +rLp +rtt +pBG +vpf +mRU +vor +qnA +vkI +gNN +lyz +woU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +kyw +xwd +lfx +bwG +weR +aPE +weR +vrI +izk +aQF +aQF +aQF +aQF +aQF +aQF +aQF +aQF +mNG +pSF +eZC +kan +avW +bZn +dXr +uay +vhX +gDW +rlZ +rlZ +duO +dBH +bky +ryt +rlZ +gYl +vhX +hCS +xIk +cLA +xIk +kan +hBW +ltv +qEz +bJt +bJt +bJt +bJt +bJt +bJt +bJt +mJO +plv +plv +plv +plv +mvg +mJO +mgb +mgb +lyW +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(151,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acv +aiH +alg +bBC +bBC +aIx +aIB +aiH +aet +kPZ +acI +acj +vJZ +wfZ +adF +aef +dWw +agA +mRJ +fjA +gqH +vOy +anz +vgx +hme +mzq +qJy +vOy +vti +vti +fBO +vti +gGx +vti +lid +lJv +aCC +kXw +pxo +asn +mRJ +oEn +gqH +pBG +rdZ +rdZ +rdZ +rdZ +rdZ +pBG +jZU +jAe +pBG +jtU +mRU +tNw +ebI +ukC +jtU +fCi +woU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +kyw +deq +cGY +bwG +rUq +rUq +sab +sab +izk +pQc +cWr +jSU +lXO +eKT +wan +cTC +aQF +syj +wKN +qqf +xMs +xMs +xMs +xMs +xMs +xMs +cjW +rlZ +rlZ +wYr +dBH +quv +rZB +rlZ +wxc +vMo +vMo +vMo +vMo +vMo +vMo +tzw +sPY +hkC +bJt +xOL +gGI +eeu +gfq +eFP +gAz +mJO +plv +plv +plv +plv +plv +mJO +xbg +pgJ +lyW +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(152,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +aet +avx +ahN +uli +uli +uli +bWf +aet +lwC +aTT +acl +xxi +qJj +adF +aef +aef +uZZ +muW +lGh +bBH +vOy +awQ +oLU +thN +vDa +vOy +vOy +qfy +inL +oiY +ueJ +ueJ +oDi +trF +lJv +edv +kXw +pxo +asn +lXl +yiu +bBH +pBG +rdZ +rdZ +rdZ +rdZ +rdZ +pBG +cVq +jcj +pBG +vpI +mRU +mRU +mRU +gBs +mRU +mRU +woU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +kyw +deq +veq +bwG +pKh +sab +rDv +bmW +jWu +pQc +aqo +aRy +aRy +aRy +aRy +nIj +aQF +rWv +hKe +qPk +xMs +aSO +feY +xEz +bgn +bgw +eXb +rlZ +rlZ +kSC +kan +oRy +rlZ +rlZ +hAU +xqy +bmk +wZE +iGn +byd +vMo +knm +sPY +knm +lhB +pOY +bDs +jge +bDs +bDs +hLC +mJO +plv +plv +plv +plv +plv +mJO +xbg +mgb +lyW +ajZ +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(153,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +aet +avV +uli +uli +uli +mov +bWq +aet +lhX +aXc +acl +jlN +qqn +adF +bls +aeH +agq +ijd +efV +bBH +vOy +hng +dnC +hPN +vCk +qEn +qam +riE +gAS +lMv +dVu +eSo +qmD +aIC +lJv +aCt +kXw +pxo +asn +lXl +poD +qmW +pBG +rdZ +rdZ +rdZ +rdZ +rdZ +pBG +dzp +oLr +pBG +jtU +jtU +uBx +fLi +vpf +prf +vpf +woU +aaa +aac +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +bdH +aad +kyw +deq +deF +bwG +mTi +lJK +kYV +hhn +aQp +aQG +ulZ +aRA +aRA +bQU +bQU +bjD +dqE +htl +vaq +vTX +xMs +lOH +dUS +bcP +dSX +bgw +fbw +rlZ +rlZ +thP +beW +bgP +rlZ +rlZ +rFH +xqy +aGg +bof +vit +dxu +vMo +knm +sPY +knm +lhB +xCb +bDs +bIJ +bDs +bDs +qJS +mJO +plv +plv +plv +plv +plv +mJO +xbg +xbg +lyW +ajZ +aaa +avo +avo +avo +avo +avo +avo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(154,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acv +aez +uli +aIx +uli +uli +mov +bWq +aet +lhX +eYM +uuR +dHu +qqn +adF +aef +kqN +agA +lXl +qdJ +qmW +vOy +xyt +wiW +tOr +dBj +wei +kBP +kBP +jsx +tjn +aCC +kXw +pQP +qAT +vOy +vOy +mFq +vqW +sqf +rnM +poD +bBH +pBG +pBG +pBG +pBG +nec +pBG +pBG +saL +pBG +pBG +mRU +mRU +mRU +mRU +mRU +jtU +vpf +woU +aaa +aad +aag +aag +aag +aag +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +bdH +aad +kyw +deq +oWq +bwG +aQF +aQF +aPH +xIQ +tmX +pQc +rrK +aRy +feI +brb +cpp +buv +aWF +qPk +hKe +qPk +xMs +akE +qGF +bcV +bgr +bgy +fxZ +rlZ +aZK +pqD +pqD +pqD +hBc +rlZ +pKZ +bmd +bnR +ggz +dka +bye +vMo +knm +sPY +knm +lhB +aQW +bDs +bNw +wIG +wLK +hAz +bJt +bJt +bJt +bJt +bJt +bJt +bJt +xbg +otW +lyW +ajZ +avo +avo +avs +avs +avs +avs +avo +avo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(155,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acv +aez +uli +uli +uli +uli +uli +aiH +aet +lhX +acl +acl +acl +qqn +aef +aef +tRD +abE +tkF +qdJ +bBH +vOy +iYf +bIM +wPz +iUo +qAE +xqp +lzA +vkp +tjn +aCC +kXw +vtm +emK +fGu +hPe +sdu +btC +vLj +ijd +efV +bBH +rRT +pBG +gqQ +cHG +nQA +bvS +drP +lKO +pBG +lEf +gel +gel +gel +fkX +mRU +jtU +tMU +woU +aaf +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +xwd +lfx +bwG +weR +aPE +izk +xIQ +vse +aQF +blp +aRy +aTn +aTY +iCF +gJP +aQF +uNf +hKe +qPk +xMs +aYR +dUS +mqU +bgs +bgw +icw +qni +klH +vYt +fDj +eBZ +klH +qni +uah +xqy +jhn +jZd +vit +bzo +vMo +knm +sPY +knm +lhB +pxD +bDs +gSk +bDs +bDs +bDs +xjb +fbo +duo +iIl +bDs +ujV +bJt +xbg +xbg +lyW +ajZ +avo +avs +avs +hAG +vtr +avs +avs +avo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(156,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +ahy +avZ +ipK +ipK +ipK +uli +bWf +aet +lhX +acl +acl +acl +qqn +adF +aef +afs +agA +lXl +yiu +bBH +vOy +mTp +wiW +wPz +jeq +eYU +wWR +vti +vkp +cfT +hec +gNp +hVf +dVu +rmc +lON +dVu +oDR +vOP +muW +cDI +tru +uXE +qvL +wmP +wmP +dRP +kpf +nQA +eAN +dbM +rfb +cXF +rLU +dKp +cHu +mRU +jtU +vpf +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +deq +sJa +bwG +pGG +sab +izk +hds +aQF +aQF +haQ +aRy +boY +qZH +bsN +buB +aWD +qPk +hKe +qPk +xMs +bXw +eiw +bda +bgt +bgw +jxi +rlZ +rlZ +tgV +tgV +tgV +rlZ +rlZ +nrN +xqy +nYD +boh +qDP +wbP +vMo +knm +sPY +cbL +bJt +qom +bDs +rAx +jFE +fuS +jFE +jFE +jFE +jFE +idx +hAz +gHj +bJt +oqI +xbg +avo +avo +avo +avs +rKn +awa +awa +umm +avs +avo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(157,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +aet +aIx +ipK +ceC +eRR +uli +bWq +aet +loV +acK +acm +acK +esK +adD +sOw +afs +agA +lXl +yiu +bBH +vOy +axn +dRh +ydE +bST +rQy +vOy +vdO +vkp +aoM +kBo +chc +naR +vOy +hrn +vOy +aRd +aIo +vOy +whc +yiu +bBH +mxq +pBG +lvb +eAN +jVg +gyI +xCf +eAN +dbM +rLv +bHk +vZw +bHk +cHu +mRU +vpf +mRU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +lfx +deq +jgK +aNs +aNs +hyw +mzz +aQF +aQF +blj +aRy +bpa +fHF +bml +buB +aWD +eZC +pSF +eZC +xMs +xMs +xMs +xMs +xMs +xMs +jGn +rlZ +ggJ +oXY +bZn +kFv +dut +rlZ +sPJ +vMo +vMo +vMo +vMo +vMo +vMo +hBW +ltv +kGw +bJt +bJt +nFI +qdk +vzP +bJt +hjB +bJt +xfK +bDs +gSk +bDs +bpI +bJt +jLH +xbg +lpy +avC +avC +wEg +axa +axa +dSZ +oMs +avs +avo +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(158,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +aet +uli +ipK +awe +fwD +uli +oGy +aet +lhX +acl +acl +acl +qqn +adF +aef +afs +agA +lXl +yiu +bBH +vOy +aAr +pGK +tpa +tpa +tpa +vOy +dHV +vkp +jUM +lou +eBO +pRn +vOy +ayZ +aCD +hFC +qmy +vOy +lXl +yiu +bBH +pBG +pBG +hEl +eAN +fQS +rlW +neT +eAN +dbM +cNH +vzp +vZw +erd +cHu +mRU +vzB +mRU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +txp +iGc +bwG +vMr +vMr +izk +uhl +aQF +aQF +blf +aRy +kkt +htL +aUL +buB +aWD +qPk +hKe +qPk +nyw +iXU +hDw +kzb +pha +kan +kan +mwM +wmQ +kan +kan +kan +mwM +eRy +kan +kan +rIO +vEH +uFH +tQd +nyw +knm +sPY +knm +yfS +sEi +dck +quV +doJ +loY +tOW +lkd +dYR +bDs +gSk +reL +wiI +bJt +tqV +dSm +avo +avo +avo +avs +awa +awa +awa +qUp +avs +avo +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(159,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +aet +avx +ipK +ipK +ipK +uli +bWq +aet +lhX +acl +acl +acl +qqn +aef +aef +pHG +abE +tkF +poD +bBH +vOy +aID +gLc +mKx +iit +kZV +vOy +vOy +jpl +vOy +wKL +vOy +vOy +vOy +qqQ +aoM +aoM +vgB +kgs +lXl +poD +bBH +bvX +ojQ +eAN +eAN +jVg +nQA +nQA +eAN +dbM +rfb +bHk +vZw +bHk +cHu +mRU +vpf +mRU +woU +aah +aag +aag +aag +aag +aag +aag +ajZ +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +cme +whm +bwG +mTi +lJK +izk +xIQ +vyp +aQF +blw +aRy +aTr +aTZ +aUM +gJP +aQF +rmz +wKN +qPk +nyw +beH +dcd +beH +bqZ +beH +neS +beH +beH +tJR +rRU +oEw +beH +beH +neS +beH +bqZ +beH +beH +beH +nyw +knm +sPY +knm +yfS +hgL +swt +wSX +wpI +ktX +smi +lkd +tsa +bDs +gSk +bDs +vwI +bJt +lAa +mgb +lyW +ajZ +avo +avs +avs +loK +wpg +avs +avs +avo +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(160,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +acv +aez +uli +uli +uli +uli +uli +oWz +aet +lhX +gsZ +uxO +bTt +qqn +adF +aef +aGS +agA +lXl +poD +bBH +vOy +aMd +pGK +pRX +mHD +pRX +vOy +jFf +vkp +jrM +mWs +lmw +vOy +dyb +tsM +prx +fpT +eVT +kgs +lXl +poD +bBH +bvX +kVV +vQR +vQR +epJ +jML +jML +fnH +dbM +rLv +pRy +wwW +mRW +cHu +mRU +jtU +vpf +woU +aaa +aad +aag +aag +aag +aag +aah +afm +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +cGY +ipn +bwG +aQF +aQF +sPc +xIQ +sab +pQc +olM +aRy +aRy +eXr +iFH +buv +aWE +qPk +ckh +htl +aum +emr +emr +emr +uNB +quq +duv +beH +beH +beH +bqZ +beH +beH +beH +fcf +beH +pmH +rCO +rCO +rCO +eVv +wwE +mDZ +knm +ykj +rlQ +ven +agH +wxU +tvM +smi +lkd +rBj +bDs +gSk +bDs +fUB +bJt +mgb +nhw +lyW +ajZ +avo +avo +avs +avs +avs +avs +avo +avo +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(161,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +acv +aez +aIB +aKg +uli +uli +mov +bWq +aet +lhX +kNO +acl +jlN +qqn +adF +aef +nIS +uZZ +muW +poD +bBH +vOy +aMg +aSo +pRX +mHD +tzL +vOy +vqZ +vkp +rDr +usy +nDo +vOy +glB +vkp +ger +aoM +aFf +mmN +lXl +poD +bBH +bvX +maO +lPm +iZV +fdx +cuq +eQJ +fVF +pBG +qWR +wJH +wJH +wJH +sNR +mRU +jtU +vpf +woU +aaa +aae +aah +aah +aah +afm +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +oif +deq +bwG +weR +aPE +izk +uhP +aQq +aQH +upO +pOi +pOi +pOi +pOi +nVF +aWF +qPk +wKN +qPk +nyw +eGZ +ieX +pfM +bqZ +rEf +rWT +emr +emr +usX +vKe +rCO +rCO +rCO +vVd +eBg +wRT +bhq +dcd +eTd +nyw +knm +rDO +hqp +kKk +rDt +gpI +xwp +fLg +tvM +dfC +cEi +bJt +oKb +gSk +bDs +nqO +bJt +nQo +pgJ +lyW +ajZ +aaa +avo +avo +avo +avo +avo +avo +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(162,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +acf +aet +aJJ +aIB +uli +uli +mov +bWq +aet +lwC +tIK +acl +sNO +qJj +adF +aef +nIS +eWF +muW +poD +bBH +vOy +aQZ +bkT +pRX +mHD +pRX +vOy +foP +sZy +vEr +irU +bVe +vOy +ggl +jjS +qMP +kBP +kqo +vOy +tkF +poD +qmW +pBG +pBG +pBG +pBG +qRr +pBG +pBG +pBG +pBG +pBG +mRU +mRU +mRU +mRU +mRU +jtU +tMU +woU +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +byt +lfx +bwG +iWQ +iWQ +uFd +mUq +qwt +pQc +bng +bmX +bmX +tou +tou +jhy +aQF +eZC +hMk +mkw +bdd +bdd +bdd +bdd +bdd +qCc +fUA +beH +spF +uBN +bqZ +jMr +eGZ +beH +fUA +qYZ +bdd +bdd +bdd +bdd +bdd +xwm +ltv +hBW +yfS +ape +ven +njJ +kiM +tvM +smi +lkd +kvU +idX +cnu +bDs +knK +bJt +xbg +oUZ +lyW +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(163,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +acf +aet +avx +ahN +aIB +aKg +uli +bWf +aet +abK +acL +acn +cRK +dXV +adF +aef +kqN +agA +lXl +yiu +bBH +vOy +dVd +lea +hKl +lDN +kZV +vOy +vOy +eNI +eNI +eNI +vOy +vOy +hRa +vti +vti +vti +aEZ +vOy +lXl +yiu +bBH +fKh +gQk +trU +oNY +fdx +pBG +pVF +ppF +nFc +pBG +jtU +jtU +uBx +ycM +vpf +jtU +vpf +woU +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +jNo +lfx +bwG +iWQ +iWQ +sab +aNr +pQY +pQc +bll +bll +bpo +dVO +bsR +aQr +aQF +qPk +wKN +qPk +tda +ngI +dkq +lRZ +acc +beH +beH +dwl +bdd +bdd +gac +bdd +bdd +aMt +beH +beH +acc +qby +btY +bAJ +huU +knm +sPY +knm +yfS +ape +ven +bWT +fKV +tvM +smi +lkd +qTY +bDs +gSk +ljG +tSp +bJt +xbg +ssk +lyW +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(164,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +acv +aiH +uli +bLO +bLO +bLO +bLO +aiH +qga +eAU +eAU +eAU +eAU +eAU +fcE +aef +uNN +abE +dfA +yiu +bBH +vOy +vOy +vOy +mSK +mSK +mSK +vOy +vOy +voV +wKP +hLr +vOy +vOy +rhO +pgM +nPE +oqZ +uaI +vOy +hUu +yiu +bBH +fKh +iuG +sOv +eAN +fdx +gAk +dzp +rMT +dzp +pBG +jtU +mRU +mRU +mRU +mRU +vpf +mRU +woU +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +deq +lfx +bwG +mTi +lJK +mTi +lJK +kmp +aQF +bln +xEX +aQF +aQF +aQF +aQF +aQF +ldb +rYI +fzc +bdg +vyg +bni +cwX +vuA +nVi +nVi +nVi +vuA +tab +udi +wCs +vuA +nVi +nVi +nVi +vuA +snb +xbd +bAU +bdg +jlD +pYN +raE +bJt +wbC +lHu +oiL +qBM +wXI +nUd +lkd +xOT +bDs +gSk +oDE +bJt +bJt +xbg +mgb +lyW +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(165,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acv +aiH +aiH +bWd +awi +bWd +mOb +aiH +aet +aBD +acU +uPr +sTd +lfH +aeI +eva +xzf +abE +tkF +poD +dSI +iLL +gqH +vOy +vOy +vOy +vOy +vOy +vOy +eNI +eNI +eNI +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +qQD +poD +bBH +fKh +ubI +nQA +nQA +jvM +pLa +nTR +gDp +rwq +pBG +jtU +mRU +oyO +nve +mRU +vzB +mRU +woU +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aad +kyw +xbI +lfx +bwG +aQF +aQF +aQF +aQF +aQF +aQF +aQF +aQF +aQF +wYG +yhR +gHi +bwG +pzj +uhq +pzj +bdg +apz +dyd +fyD +bdd +dhR +dhR +dhR +vuA +eYu +qaW +wbN +vuA +lVS +lVS +lVS +bdd +vPw +bvr +bBQ +bdg +sgL +aRL +sgL +rde +vjC +iMm +mJi +iMm +iMm +mkc +bJt +xaN +bDs +gSk +luS +bJt +uCw +xbg +mgb +lyW +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(166,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vHn +cGd +moK +cGd +cGd +aNi +aNi +bWr +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +hUu +poD +tsn +tsn +bBH +vOy +elR +xXh +xXh +xXh +dMK +aCR +aAT +aNY +elR +xXh +xXh +xXh +dMK +vOy +vOy +vOy +lXl +poD +bBH +pBG +mGT +nQA +nQA +vEG +pBG +pBG +pBG +pBG +pBG +jtU +rXF +jtU +vzB +mRU +kuK +mRU +woU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +aad +kyw +deq +deq +bwG +tEu +mUY +vOw +ouU +dro +bwG +gSH +xJp +qxJ +hCk +deq +nRN +bwG +wsS +vxY +wsS +bdg +auj +bbf +ber +vuA +nVi +nVi +nVi +vuA +jkz +ngI +xGJ +vuA +nVi +nVi +nVi +vuA +bpv +tMW +bBY +bCh +mPM +esd +mPM +yfS +xML +iMm +jSy +wGb +iMm +rjn +bJt +wUX +bDs +gSk +vSp +lHG +kOJ +mgb +mgb +lyW +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(167,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aac +aaf +aaf +aaf +aaf +aaf +aaf +aaf +vHn +ejV +hoT +hoT +vyh +aNi +cYT +aNm +cYT +jwB +vkE +vif +bhx +aOR +bhx +vif +aOR +bsw +lXl +hPZ +bPi +ava +bBH +vOy +wWz +vHO +ruc +uvP +wTM +dNq +vVs +aFa +wWz +liY +ruc +xOY +wTM +vOy +uWk +iLL +lRh +poD +qmW +pBG +tGT +nQA +nQA +jDO +pBG +aYH +cHG +cOY +pBG +mSM +mRU +gRc +oOp +mRU +jtU +vpf +woU +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aac +kyw +kyw +kyw +kyw +kyw +kyw +kyw +kyw +deq +caq +bwG +igb +cpz +ooA +kpj +sBY +wyG +qjL +kpj +rAo +lka +kpj +kpj +mQY +ygp +tdi +fZE +tda +mng +wTm +wCI +acc +beH +beH +beH +acc +mng +wTm +wCI +acc +beH +beH +beH +acc +mng +wTm +wCI +tda +oSM +ter +oSM +bJt +swE +wpI +ocm +wpI +wnL +kHd +bJt +hSw +qxE +rui +vSp +bJt +uXU +xbg +nhw +lyW +lyW +lyW +lyW +lyW +lyW +lyW +lyW +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(168,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +dGg +tob +hoT +tob +aNi +aZe +aNm +aNm +lRP +hCY +bhx +bhx +hMi +aco +aco +dYu +bsw +cOe +vwT +akh +poD +qmW +vOy +wWz +anw +wLy +jlG +aqP +kCE +wLN +npt +xuE +hqh +wLy +eiE +wTM +vOy +lXl +mfO +mHY +yei +bBH +fKh +eYn +nQA +nQA +vEG +mlP +eAN +eAN +eAN +pBG +vpf +mRU +mRU +mRU +mRU +vpI +vpf +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +kyw +kyw +hCk +maK +lfx +lfx +lfx +deq +deq +deq +lfx +eYp +lfx +vmq +cqH +tjO +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +nhE +naa +nVQ +bdd +vuA +vuA +vuA +bdd +qCc +fUA +qYZ +bdd +vuA +fnx +vuA +bdd +qCc +fUA +qYZ +bdd +vuA +vuA +vuA +bdd +fvV +ter +gvK +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bJt +cDC +vuF +bJt +bJt +xbg +mgb +mgb +mgb +gLm +ttD +mgb +mgb +mgb +lyW +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(169,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +oSG +tob +tob +tob +aNi +aZr +aNm +aNm +lTE +hCY +bhx +bhx +aOR +bhx +bhx +cCa +aNi +aNi +aNi +rnM +qdJ +bBH +vOy +wWz +ovG +gxP +aPJ +wTM +apS +wse +aFa +wWz +ual +gxP +aOe +wTM +vOy +piQ +yiu +xIj +xIj +bBH +fKh +wvo +nQA +nQA +vEG +pBG +skR +oxc +nBi +pBG +vzB +mRU +pGh +xEs +mRU +jtU +tMU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +kyw +xJp +lfx +deq +yih +deq +deq +lfx +lfx +lfx +rHq +bwG +nPO +cGB +ugj +fbC +bdd +uvU +xZk +dGU +lgF +eYj +aSp +mho +bdg +fZE +iLm +fZE +bdg +bqZ +bqZ +bqZ +bCg +beH +fUA +beH +bCg +bqZ +beH +bqZ +bCg +beH +fUA +beH +bCg +bqZ +bqZ +bqZ +bdg +oSM +xub +oSM +bdg +lCE +oZD +lwh +oPz +lCE +xLi +qkY +bdd +qXo +feq +loY +aDU +bJt +vAx +mgb +xbg +mgb +xpL +mgb +mgb +xbg +xbg +mgb +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(170,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +oeH +tob +hoT +tob +aNi +aZs +aNm +aNm +mwL +hCY +bhx +bhx +aOR +bhx +bhx +qiy +ahR +ahR +egt +shC +vIZ +bBH +vOy +woh +vgO +aoJ +alk +xAe +avH +wse +cXC +woh +pLO +qxm +vgO +xAe +vOy +psk +poD +sin +vwT +gsJ +fKh +lDa +eAN +eAN +vEG +pBG +pBG +pBG +pBG +pBG +vpf +tra +vpf +vzB +mRU +iJT +vpf +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +kyw +deq +lfx +nsY +nsY +pRT +nsY +nsY +nsY +nsY +nsY +nsY +bwG +bwG +msC +bwG +bdd +xwE +dAQ +tGG +kEs +tGG +bpA +mho +bdg +fZE +naa +fZE +bdg +bqZ +beH +beH +beH +beH +fUA +beH +beH +beH +beH +beH +beH +beH +fUA +beH +beH +beH +beH +bqZ +bdg +oSM +ter +oSM +bdg +lCE +uek +dkX +qXp +oCl +tPm +kiX +bdd +tLc +rsM +iMm +hTT +nsY +nsY +nik +nsY +nsY +nsY +nsY +nsY +nsY +kqb +mgb +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(171,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +mId +hoT +hoT +hoT +aNi +jWr +aNm +jWr +olw +eaA +bhx +bhx +wWg +aco +aco +hpY +aOR +aOR +bgK +muW +qdJ +bBH +vOy +vOy +vOy +uqd +amk +pYo +avF +coJ +iAz +cQo +aIP +aoK +vOy +vOy +vOy +pLE +poD +bBH +mRU +mRU +pBG +aGs +eAN +eAN +vEG +vrJ +xOs +kOH +hIs +pBG +mSM +mRU +tCd +vpf +tra +vpf +mRU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +nsY +xWT +kxd +jgk +nsY +rSG +rur +oqS +nsY +hsh +cPP +deq +eLH +bdd +eUZ +lCr +lCr +fwM +tGG +lJD +mho +bdg +fZE +naa +fZE +bdg +bqZ +beH +aLJ +bmr +beH +beH +beH +pfJ +kDY +ufh +fDg +cel +beH +beH +beH +rJK +gBo +beH +bqZ +bdg +oSM +ter +oSM +bdg +lCE +fMe +sNI +jmn +sgD +kUR +vMM +bdd +hxZ +rsM +iMm +gzV +nsY +xWT +kxd +viu +nsY +rSG +qkP +oqS +nsY +mgb +mgb +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(172,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +eDq +jFI +cGd +moK +aNi +aNi +aNi +aNi +aNi +aOR +eVQ +aOR +aOR +aOR +eVQ +aOR +aOR +agr +aNi +lXl +lGh +bBH +vOy +vOy +vOy +vOy +vKb +rzN +avG +jbK +aOd +sXd +aJn +vOy +vOy +vOy +vOy +mIR +lGh +bBH +mRU +vpf +pBG +xiU +xUa +eAN +mLe +pBG +pZH +nnL +lgt +pBG +vpI +mRU +bhV +jtU +mRU +vzB +mRU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +nsY +xWT +kxd +viu +nsY +iIP +kxd +dDt +nsY +exb +deq +deq +qLY +bdd +ljW +bDP +lCr +ijr +lCr +mpn +pZR +bdd +atH +iEM +atH +bCx +bqZ +beH +bgO +boq +boq +boq +boq +byE +pVB +hsg +iPv +azN +uMk +uMk +uMk +uMk +bgO +beH +bqZ +bCx +oSM +ter +oSM +bdd +tSF +lsn +kUR +kUR +mkl +gXB +car +bdd +hTf +rsM +oos +sBL +nsY +xWT +rfT +viu +nsY +dmR +kxd +dDt +nsY +mgb +xbg +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(173,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aad +aag +aag +aag +aag +aag +aag +aag +vHn +cGd +cGd +cGd +iTQ +lWt +eDq +eDq +eDq +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +pLE +lGh +bBH +bPF +aqG +ata +vOy +apR +aqS +mnW +nPf +vYz +awR +uoi +vOy +jyJ +niF +bPF +tkF +yiu +bBH +mRU +vpf +pBG +pBG +pBG +qIx +pBG +pBG +pBG +pBG +pBG +pBG +jtU +mRU +mRU +mRU +mRU +vpf +mRU +woU +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +nsY +gsg +vHq +vvY +nsY +rNb +bxC +jiU +nsY +jvt +hiu +deq +vSr +bdd +asr +asr +asr +mki +nYp +fZG +phd +pmv +mzv +yfg +fZE +nyw +bqZ +beH +bgO +boq +boq +boq +boq +byE +vBp +kNl +nhi +azN +uMk +uMk +uMk +uMk +tmB +eBg +vKe +eVv +cVZ +xdf +cVZ +hLS +vKe +vKe +uSH +uwt +rLP +pPA +ycx +bdd +hTf +rKO +wGb +gUf +nsY +gwM +bxC +pJD +nsY +iSm +bxC +jiU +nsY +mgb +xbg +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(174,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +hoT +tob +tob +hoT +tob +tob +hqm +hoT +tob +tob +tob +tob +hoT +vyh +hoT +tob +tob +fkK +muW +lGh +muW +cbg +aqG +atb +vOy +xSY +rzN +lCt +lto +paa +sXd +gVq +vOy +sLk +niF +cbg +muW +yiu +muW +rXF +jtU +jtU +vpf +ycM +tne +jtU +jtU +vpf +ycM +vpf +jtU +jtU +jtU +uBx +fLi +jtU +vpf +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +kyw +lfx +deq +nsY +nsY +qxC +nsY +nsY +nsY +ntx +nsY +nsY +qWL +kIk +eXD +kMr +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +fZE +iLm +fZE +bdg +bqZ +beH +bgO +boq +boq +boq +boq +byE +vBp +hWs +nhi +azN +uMk +uMk +uMk +uMk +bgO +beH +bqZ +bdg +oSM +xub +oSM +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +tuo +rsM +oos +gUf +nsY +nsY +iFM +nsY +nsY +nsY +gLZ +nsY +nsY +mgb +nhw +lyW +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(175,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam +gxm +hgk +tob +njn +njn +njn +njn +njn +njn +njn +njn +njn +njn +njn +aej +aej +aej +aej +aej +gpT +lGh +cQF +vOy +vOy +vOy +vOy +msi +kDk +kbJ +cJM +jlA +qLi +dEm +vOy +vOy +vOy +vOy +xac +yiu +vbU +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +nIN +jtU +vpf +gxm +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aad +kyw +kyw +kyw +deq +caq +nsY +tUS +bNh +wNl +nGh +fPp +lqN +vlO +nsY +xxG +smA +ktR +lfx +bdd +dJI +jaf +kwc +ebp +mPR +osU +vKe +dYX +mzv +xhW +fZE +bdg +bqZ +beH +bgO +boq +boq +boq +boq +byE +pUA +wga +mfM +azN +uMk +uMk +uMk +uMk +bgO +beH +bqZ +bdg +oSM +iOo +cVZ +iUk +cIx +fUC +vKe +sDA +kWN +tln +bko +bdd +hTf +wRO +iMm +gUf +nsY +aaq +wHj +qdv +uQo +iQt +uZo +xmJ +nsY +xbg +mgb +lyW +lyW +lyW +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(176,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam +gxm +bLf +tob +njn +rWz +rWz +rWz +rWz +rCZ +rWz +rWz +rWz +rWz +rCZ +aej +aeO +afG +ags +aej +lXl +lGh +bBH +vOy +elR +xXh +xXh +apU +taH +aBe +otu +jBO +jNc +ean +xXh +xXh +dMK +vOy +lXl +yiu +bBH +nIN +iIb +wui +iIb +nIN +rgL +rgL +rgL +rgL +lAW +rgL +rgL +rgL +rgL +lAW +nIN +jtU +nVE +gxm +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +kyw +veq +deq +deq +lfx +nsY +kio +sJY +qJY +qLH +xTW +oGP +cnM +nsY +kqB +txH +txH +deq +bdd +fva +lkL +mBO +cHB +cHB +hDV +vmP +bdd +fZE +iLm +fZE +bdg +bqZ +bqZ +bgO +beH +beH +duv +beH +iaK +lgC +oBG +gZz +tIa +beH +duv +beH +beH +bgO +bqZ +bqZ +bdg +oSM +xub +oSM +bdd +oNP +tge +yjU +yjU +yjU +tEC +bko +bdd +gKB +rsM +oos +gUf +nsY +mKJ +deT +uAC +rhQ +pyc +uMn +ivz +nsY +xbg +mgb +xbg +xbg +lyW +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(177,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam +gxm +rGz +tob +njn +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +aej +aeP +agI +aia +yaz +muW +qdJ +bBH +vOy +wWz +vHO +uXj +uXj +iwJ +jVt +uyH +vHO +iwJ +uXj +uXj +rdt +wTM +vOy +lXl +poD +bBH +aQx +xzh +sjM +oIn +nIN +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +nIN +jtU +bWg +gxm +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lHB +lfx +lfx +lfx +lfx +heK +kam +axc +juD +twW +vHh +pvh +sZs +nsY +bwG +erL +scX +caq +bdd +cDH +cHB +scN +vvw +wmz +rhy +rec +bdg +fZE +naa +onn +bdd +bdd +bDQ +bgO +vGG +vGG +bgO +xRJ +xRJ +xRw +bPO +whA +xAt +xAt +bgO +gAj +gAj +bgO +cab +bdd +bdd +tmE +ter +oSM +bdg +jLS +xdP +gAj +dBI +sMu +eYF +vMM +bdd +sOt +cNX +cdI +sBL +nsY +eiN +dVs +tat +kNC +xuQ +uPW +kYv +oDx +sAS +sAS +sAS +rCh +xbg +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(178,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +adj +apk +apk +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +hqb +vsd +njn +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +aej +aeQ +agK +agu +eup +muW +qdJ +bBH +vOy +wWz +uwZ +wWm +jQt +nwi +sNz +uyH +uwZ +kGQ +jQt +coZ +sNz +wTM +vOy +lXl +poD +bBH +aQx +bcg +bkM +gYp +nIN +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +nIN +jZo +hQK +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +asM +asM +mwR +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +eqm +lfx +vvH +bwG +bwG +nsY +gAP +oEX +irT +tyb +xxm +qSK +ieu +nsY +mZc +lfx +neH +deq +bdd +xXW +gVu +ydO +krU +wmz +vbI +rec +bdg +atH +iEM +atH +ppV +bdd +bqZ +bgO +vGG +vGG +bgO +xRJ +xRJ +viO +gMU +ksN +xAt +xAt +bgO +gAj +gAj +bgO +bqZ +bdd +eoy +brq +jnc +brq +bdg +jLS +frb +kNX +mZf +gAj +ngn +jUq +bdd +pEl +roU +oos +uVh +nsY +kzK +lFh +jYc +pVA +mzV +pML +ivz +nsY +iZd +mgb +xbg +jPx +xQd +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(179,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +ojH +ojH +taV +ouf +ouf +ouf +ouf +ouf +ouf +ouf +aLc +wBI +hGG +njn +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +aej +aeR +agK +agu +aej +dfA +qdJ +qmW +vOy +wWz +pEJ +xQm +wLy +eqD +sNz +uyH +sWW +mWW +wLy +xQm +tfH +wTM +vOy +piQ +poD +bBH +aQx +viv +xzh +syp +nIN +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +rgL +nIN +vmJ +elv +vRR +qXS +qXS +qXS +qXS +qXS +qXS +qXS +hXX +xDe +xDe +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +htg +deq +deq +qCH +cXm +nsY +hUz +dbn +qvC +tyb +uRM +ipe +ehR +nsY +xEe +lfx +tdH +igw +bdd +sgm +kEg +nFA +jkD +xgN +vgn +xgN +bdg +fZE +naa +fZE +fZE +bdg +bqZ +qMR +rwv +rwv +dRT +dqD +dqD +bUb +dRT +eWp +eWp +eWp +dRT +tXb +tXb +fOk +bqZ +bdg +oSM +oSM +ter +oSM +bdg +vLg +loy +naK +mRq +xkB +qXO +eeh +bdd +pcO +tJV +qoY +uCh +nsY +tXT +jJk +wLG +tyb +sZH +aVQ +ivz +nsY +qZy +jfS +bUH +ciB +soT +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(180,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +ojH +ojH +taV +ouf +ouf +ouf +ouf +ouf +ouf +ouf +sdf +cRL +hGG +njn +njn +njn +ahi +njn +njn +njn +njn +uux +njn +njn +aej +aej +agO +aid +aej +cOe +vZI +gsJ +vOy +wWz +uwZ +tyD +jQt +vfP +sNz +uyH +uwZ +tyD +jQt +vfP +sNz +wTM +vOy +cOe +vZI +gsJ +nIN +nIN +cyh +nIN +nIN +nIN +nIN +nNX +nIN +nIN +nIN +nIN +ayo +nIN +nIN +nIN +vmJ +nzD +xDV +qXS +qXS +qXS +qXS +qXS +qXS +qXS +hXX +xDe +xDe +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lfx +lfx +yih +qCH +spT +nsY +nsY +nsY +nsY +tIp +nsY +nsY +nsY +nsY +bwG +bwG +bwG +bwG +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +tvl +naa +meQ +fZE +bdg +bqZ +beH +vGG +vGG +beH +xRJ +xRJ +xRJ +beH +xAt +xAt +xAt +beH +gAj +gAj +beH +bqZ +bdg +oSM +awE +ter +gvK +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bJt +bJt +bJt +bJt +nsY +nsY +nsY +nsY +goy +nsY +nsY +nsY +nsY +ecj +bZf +lZI +faR +wxu +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(181,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +ojH +ojH +taV +ouf +ouf +ouf +ptA +ouf +ouf +ouf +fTj +jOD +oOw +cPK +sPb +dlo +sAz +jZC +uyd +ito +cuN +cQW +lQa +sPb +gtg +ilq +aMy +aMy +wNC +hOn +sYU +xCs +vOy +wWz +qxP +gxP +gxP +jgg +jZs +uyH +iRN +jgg +gxP +gxP +nMe +wTM +vOy +hOn +sYU +xCs +wNC +kin +oQI +laI +qwU +neZ +fpA +qUx +gUS +wrX +kMp +jkB +hlT +qNI +wrX +tqO +kdn +nyS +qec +qXS +qXS +qXS +jpn +qXS +qXS +qXS +hXX +xDe +xDe +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +bwG +bwG +bwG +bwG +bwG +bwG +kUI +bFB +iPt +atH +sCg +hgs +sCg +osX +uCt +sCg +atH +eUf +pwx +eUf +eUf +rIP +eUf +atH +fZE +fZE +naa +meQ +fZE +bdg +bqZ +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +bqZ +bdg +oSM +awE +ter +oSM +oSM +brq +mdC +qWK +lyq +lyq +lyq +lyq +brq +eMI +eMI +gjg +bom +kiy +eMI +brq +cSP +cSH +svt +mJO +mJO +mJO +mJO +mJO +mJO +jPx +mgb +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(182,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +dho +wVt +wVt +jlc +sVV +kbv +dTn +kbv +kbv +kbv +jlc +kbv +dTn +sVV +sVV +sVV +sVV +vnM +lLA +ejx +jIs +xLw +vOy +woh +vgO +vgO +vgO +vgO +vgO +utX +vgO +vgO +vgO +vgO +vgO +xAe +vOy +uAP +rgO +kak +nOp +cMz +cMz +cMz +cMz +cMz +gsC +cMz +qLg +aXD +cMz +cMz +gsC +cMz +bTY +qLg +iup +ryY +cnn +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +gxm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +bwG +ycl +ycl +ycl +jCg +bwG +eNL +pVr +oHs +osQ +tpR +tpR +tpR +tpR +tpR +tpR +osQ +tpR +tpR +tpR +tpR +tpR +tpR +osQ +wxp +tpR +baW +meQ +fZE +bdg +bqZ +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +bqZ +bdg +oSM +awE +jas +jhA +cVZ +qWx +jhA +jhA +jhA +jhA +jhA +jhA +qWx +jhA +jhA +jhA +jhA +jhA +jhA +qWx +ldW +mkx +eWv +mJO +plv +plv +plv +mbR +mJO +eBG +nhw +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(183,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +vHn +fbe +hoT +rpG +bGa +dVn +vwC +fbR +xMz +kMV +eON +gxn +vEV +xMz +sdv +xMO +wDg +xMz +lIY +gxn +aMy +kNV +wNC +wlr +xyp +mnf +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +gPA +eWf +mnf +wNC +gVW +oQI +iaO +vUn +atJ +rCl +ePM +pzd +oWx +nNx +pMA +ncT +gHh +oWx +dbc +cNM +ofU +njk +rXF +jtU +vzB +woU +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +bwG +ycl +ycl +ycl +ycl +bwG +xgk +oUi +tLZ +atH +xSx +xSx +fBi +tXo +mBa +pYh +atH +wMl +aAU +dkP +dsY +rwj +xZR +atH +fZE +meQ +iEM +meQ +onn +bdd +bDQ +mng +bCu +bCu +bCu +bCu +wCI +moQ +flW +fvf +rgW +vUe +vUe +vUe +vUe +kuw +cab +bdd +tmE +awE +jnc +awE +oSM +brq +gOS +gOS +sLX +bIj +jtZ +eLu +brq +xpl +exc +jCx +mqt +vno +vno +brq +wDG +ihI +fnc +mJO +plv +plv +plv +plv +mJO +jPx +enQ +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(184,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +vHn +ggD +tob +cGd +njn +njn +njn +njn +njn +njn +hZE +sVV +oON +njn +njn +daI +njn +njn +ael +ael +agQ +aih +ael +hyT +lGh +iCg +cGO +cGO +cGO +rpV +cGO +cGO +cGO +cGO +cGO +kaO +cGO +rpV +cGO +cGO +cGO +cDP +lGh +tkd +nIN +nIN +rBD +nIN +nIN +nIN +rBD +nIN +nIN +nIN +mKi +sfT +hGV +nIN +nIN +nIN +nIN +nIN +nIN +mRU +vpf +tMU +woU +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +kyw +lfx +deq +bwG +ycl +ycl +ycl +ycl +jUx +fZE +bBR +tup +jeb +jeb +jeb +uIT +lKb +jeb +jeb +jeb +jeb +jeb +uIT +mWy +jeb +jeb +jeb +fZE +meQ +iEM +meQ +fZE +bdg +bqZ +udi +ddk +dEQ +hgg +ddk +cQc +nlB +ugu +oQH +wHo +uWc +wka +tTp +veu +mDW +bqZ +bdg +oSM +awE +jnc +awE +oSM +vra +vra +vra +mDT +cgl +vra +vra +vra +vra +vra +mDT +rJx +vra +vra +vra +uGf +mkx +oSM +vfo +plv +plv +plv +plv +mJO +nEl +bhy +lyW +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(185,1,1) = {" +aaa +aaa +aab +aaa +aac +aaf +aaf +aaf +aaf +aag +aag +aag +aag +aag +aag +aag +vHn +hgk +hoT +hoT +njn +rWz +rWz +rWz +jXN +njn +xVe +sVV +mbx +njn +tXa +gJg +tSX +lzt +ael +afE +agT +dgI +ael +ogT +yiu +xIj +xIj +xIj +tsn +tsn +tsn +xIj +tsn +tsn +tsn +xIj +tsn +tsn +tsn +xIj +xIj +xIj +lGh +syO +nIN +aGm +gNo +aGm +nIN +uig +xzh +xzh +fje +nIN +aNO +sfT +hGV +nIN +rgL +rgL +rgL +laD +nIN +upS +jtU +jtU +woU +aag +aag +aag +aag +aag +aag +aag +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aac +aaf +aaf +aaf +kyw +deq +lfx +bwG +ycl +ycl +ycl +ycl +bwG +hiP +meQ +czN +jeb +vlX +aNx +qGc +jhD +jeb +osc +cMV +osc +jeb +aIq +xHp +hmF +vlX +jeb +bMf +meQ +iEM +meQ +fZE +bdg +bqZ +udi +ddk +hgg +ddk +dNM +cQc +nlB +ugu +oQH +wHo +uWc +duw +uWc +fIZ +mDW +bqZ +bdg +oSM +awE +jnc +awE +eOx +vra +asX +chf +wDJ +tJz +vra +ukV +oNj +ukV +vra +gll +lpt +mgF +asX +vra +pHh +mkx +hNv +mJO +plv +plv +plv +plv +mJO +nEl +rxe +lyW +aaf +aaf +aaf +ajY +bdH +aaa +aab +aaa +aaa +"} +(186,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +vHn +tob +tob +njn +rWz +rWz +rWz +rWz +njn +hHe +gxn +ioH +njn +jXk +cGR +wks +jFM +ael +afH +agV +ain +ael +cQC +poD +rjr +aMl +aMl +rjr +aMl +iSx +dUR +kaE +kaE +kaE +eRI +qvh +aMl +xXd +aMl +aMl +xXd +lGh +iMD +nIN +nIN +xzh +uVY +nIN +lbO +gNo +xzh +lbO +nIN +uRY +pMA +waJ +nIN +rgL +rgL +rgL +rgL +nIN +oNM +vpf +woU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aad +aag +aag +aag +kyw +xkb +dAA +bwG +ycl +ycl +ycl +ycl +bwG +cVf +meQ +jTt +jeb +obE +tdE +qGc +rth +rth +oef +oef +oef +nny +rth +xHp +xwl +rHf +jeb +rrU +meQ +iEM +meQ +fZE +bdg +bqZ +ngI +bDP +bDP +bDP +bDP +nBw +moQ +hGO +fvf +uNM +xAt +xAt +xAt +xAt +nNH +bqZ +bdg +oSM +awE +jnc +awE +uNp +vra +bMq +qUq +wDJ +nyQ +nyQ +xJH +xJH +xJH +miV +nyQ +lpt +qYQ +ptj +vra +opV +mkx +xVY +mJO +plv +plv +plv +plv +mJO +jPx +mgb +lyW +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +"} +(187,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +hoT +hoT +njn +rWz +rWz +rWz +rWz +aba +aGA +kbv +fZo +njn +pKL +jsA +jsA +qTi +ael +afI +agY +aiq +xfm +xIj +qdJ +iCg +mOi +mOi +mOi +mOi +mOi +sOK +tAt +auc +hyE +aqU +aHq +aHq +aHq +aHq +aHq +sfz +qdJ +nZK +mOZ +nIN +xzh +gNo +aZv +xzh +xzh +xzh +gNo +nIN +mzs +aPT +xyB +ceD +rgL +rgL +rgL +rgL +nIN +isq +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aad +aag +aag +aag +kyw +deq +qZK +bwG +bwG +bwG +bwG +bwG +bwG +dTd +dTd +div +jeb +vlX +thA +gAA +gAA +bfn +oMH +coB +rSj +bfn +gAA +gAA +fFD +vlX +jeb +wEK +meQ +iEM +meQ +fZE +bdg +bqZ +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +bqZ +bdg +oSM +awE +jnc +awE +dNW +vra +asX +drj +cgo +cgo +hyk +qyW +khd +kaI +hyk +cgo +cgo +hQc +asX +vra +crc +goo +hAA +mJO +mJO +mJO +mJO +mJO +mJO +jPx +pgJ +lyW +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +"} +(188,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +hoT +tob +njn +rWz +rWz +rWz +rWz +njn +mAF +ilq +pjj +njn +kCl +cGR +jsA +uqs +ael +afJ +agY +aiq +xfm +xIj +qdJ +xIj +mOi +pDM +pDM +pBU +nfw +imS +rxl +xQV +qQS +aqU +aCZ +dgg +xRk +bti +aHq +wvX +qdJ +nZK +olF +nIN +xzh +lZJ +nIN +lbO +gNo +xzh +vwj +nIN +gfN +efj +sxE +nIN +rgL +rgL +rgL +rgL +nIN +vpI +jtU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aad +aag +aag +aag +kyw +xwd +lfx +bwG +ycl +ycl +ycl +jCg +bwG +wBw +bZo +vsf +jeb +vlX +tdE +qGc +rth +rth +hNM +vxX +uBO +rth +rth +xHp +xwl +vlX +jeb +dQV +meQ +iEM +meQ +onn +bdd +bDQ +lnm +iLh +iLh +iLh +iLh +grR +moQ +ovp +fvf +rAb +sCA +sCA +sCA +sCA +bVw +cab +bdd +tmE +awE +jnc +awE +gvK +vra +asX +qUq +wDJ +nyQ +lrT +bqW +xaC +qeY +nyQ +nyQ +lpt +qYQ +asX +vra +lDk +dEK +oWN +mJO +plv +plv +plv +mbR +mJO +jPx +mgb +lyW +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +"} +(189,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +tob +xLu +njn +rWz +rWz +rWz +rWz +njn +hZE +kbv +mbx +njn +ePz +cGR +jsA +uqs +ael +afK +ahc +air +ael +sgH +qdJ +xIj +mOi +vRA +oYZ +ezq +eXy +tFe +xQV +pax +tCC +aqU +qjF +oqv +iqd +rUy +cnS +sfz +qdJ +qTS +nIN +nIN +xzh +oIY +nIN +aGm +qoM +xzh +gNo +nIN +aDS +aPT +hGV +nIN +rgL +rgL +rgL +rgL +nIN +jtU +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aad +aag +aag +aag +kyw +deq +lfx +bwG +ycl +ycl +ycl +ycl +bwG +tQe +meQ +ktl +jeb +obE +thA +qGc +rth +rth +rth +aTW +aTW +rth +rth +xHp +diJ +rHf +jeb +fZE +meQ +iEM +meQ +fZE +bCx +bqZ +cNf +dll +dll +lRs +dll +rJu +nlB +ugu +oQH +mnI +sJC +vSK +qnC +nuK +dVe +bqZ +bCx +oSM +awE +vOZ +awE +oSM +vra +bMq +drj +wDJ +nyQ +nyQ +nyQ +obQ +obQ +nyQ +nyQ +lpt +eBV +ptj +vra +xzI +mkx +hdV +mJO +plv +plv +plv +plv +mJO +nEl +xbg +lyW +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +"} +(190,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +tob +hUb +njn +njn +njn +njn +njn +njn +laM +kbv +nkH +njn +bVR +gJg +sPa +mSo +ael +afL +ahe +aij +ael +xIj +yiu +xIj +mOi +jqZ +jqZ +dJS +gbX +tFe +xVc +xQV +vpH +aqU +gjB +wDy +aGN +dxv +cnS +cDP +qdJ +muW +aZv +gNo +gNo +pga +nIN +nIN +nIN +rBD +nIN +nIN +oIa +aPT +bqY +nIN +nIN +nIN +nIN +nIN +nIN +vpf +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +kyw +kyw +kyw +kyw +kyw +deq +iGc +bwG +ycl +ycl +ycl +ycl +cmC +fZE +meQ +hvz +jeb +vlX +tdE +qGc +rth +rth +tPI +tPI +iXT +rth +rth +xHp +xwl +vlX +jeb +fZE +meQ +cmL +czR +jzT +bCy +bDS +cNf +dll +qSE +nff +dll +rJu +nlB +ugu +oQH +mnI +nMp +qnC +qnC +qnC +dVe +cac +bCy +hQf +sTU +xLX +awE +hCf +vra +asX +qUq +wDJ +nyQ +nyQ +pHA +pHA +nyQ +nyQ +nyQ +lpt +qYQ +asX +vra +wcD +mkx +oSM +cnd +plv +plv +plv +plv +mJO +kLm +xbg +lyW +lyW +lyW +lyW +lyW +lyW +aaa +aab +aaa +aaa +"} +(191,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +tJq +bLf +njn +rWz +rWz +rWz +jXN +njn +hZE +kbv +mbx +njn +daI +njn +njn +njn +adO +adO +adO +adO +adO +iWB +yiu +syO +mOi +mOi +mOi +mOi +mOi +mOi +mAe +mAe +mAe +aqU +jVE +nTs +pje +pje +cnT +trx +gnK +aNE +nIN +nIN +nIN +nIN +nIN +uig +hPL +xzh +dMj +nIN +aDS +aPT +hGV +nIN +rgL +rgL +rgL +laD +nIN +wUJ +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +ety +deq +deq +deq +deq +deq +xJp +bwG +ycl +ycl +ycl +ycl +bwG +lFL +sNL +ygB +jeb +jeb +hfa +jwK +wnY +cLC +lyh +rtA +esn +nFK +lEO +xWd +oSL +jeb +jeb +fZE +meQ +dAm +fEF +otC +bdd +bDT +tHv +xRJ +xRJ +xRJ +xRJ +tSB +moQ +caO +fvf +vrW +iXb +iXb +iXb +iXb +pzV +cad +bdd +vMA +oYi +sIR +awE +oSM +vra +vra +eUh +jTI +lzq +nyQ +nhx +eiq +oEA +wXH +xBQ +mSU +wVy +vra +vra +siy +wIX +aCu +mJO +plv +plv +plv +plv +mJO +nEl +xbg +jPU +mgb +cgU +oqI +iDk +lyW +aaa +aab +aaa +aaa +"} +(192,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +hoT +rGz +njn +rWz +rWz +rWz +rWz +njn +hHe +gxn +gKd +njn +jsA +jsA +wET +gxk +adO +afM +fpR +ahf +adO +oDm +poD +xIj +mOi +mzP +mzP +nkK +tqu +aqU +gpW +ofY +eQj +aqU +lyE +rsO +aGN +rbB +cnS +xXd +qdJ +iCg +aUH +aXx +jKI +aXx +nIN +aGm +gNo +xzh +gNo +nIN +lCL +pMA +gcm +nIN +rgL +rgL +rgL +rgL +nIN +uNz +jtU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +byt +lfx +lfx +lfx +lfx +txp +veq +bwG +ycl +ycl +ycl +ycl +bwG +bwP +bwP +bwP +jeb +tkN +qHg +gAA +beP +bfn +pkz +qfh +ipE +bfn +moI +gAA +cGV +tkN +jeb +hjQ +meQ +fNd +oUi +qdV +bdd +bDU +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +cae +bdd +huP +nbu +kcg +awE +oSM +vra +gNq +hXb +cgo +fwY +hyk +nNV +hyk +mBc +hyk +fwY +cgo +skF +gNq +vra +fqA +fqA +fqA +mJO +plv +plv +plv +plv +mJO +rxq +sAS +cXX +sAS +sAS +nHG +xbg +lyW +aaa +aab +aaa +aaa +"} +(193,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +tob +alh +njn +rWz +rWz +rWz +rWz +bWh +hmj +kbv +fZo +njn +iSd +jsA +jsA +qbP +adO +afN +ahh +aiw +ahG +muW +qdJ +xIj +mOi +mzP +mzP +cJv +xQV +mCx +qQS +tIu +uPI +aqU +wmK +liJ +pTj +cnq +cnS +sfz +poD +xIj +aUH +oyE +mMP +mMP +nIN +xzh +gNo +xzh +gNo +nIN +mzs +aPT +xyB +cix +rgL +rgL +rgL +rgL +nIN +bWg +jtU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +deq +lfx +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +txE +bwP +bwP +jeb +aMx +qHg +qGc +hxe +aPf +rth +rth +rth +rth +hxe +xHp +cGV +nBa +jeb +atH +atH +dAm +aCX +suH +bdd +beQ +beQ +beQ +beQ +bdd +bdd +hjk +bOJ +bdd +hjk +bOJ +bdd +bdd +beQ +beQ +beQ +beQ +bdd +oCb +wwv +sIR +brq +brq +vra +bMu +hXb +wDJ +ivs +nyQ +nyQ +pHA +nyQ +nyQ +ivs +lpt +skF +pQF +vra +fqA +fqA +gzM +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +nEl +mgb +lyW +aaa +aab +aaa +aaa +"} +(194,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +btV +hoT +njn +rWz +rWz +rWz +rWz +njn +mAF +ilq +pjj +njn +xqh +svq +jsA +xGI +adO +afO +ahh +aiw +adO +xIj +qdJ +xIj +ryn +ryn +ryn +ryn +ryn +mOi +xdA +qQS +uUB +aqU +aHq +cnH +kzk +cnR +aHq +xIj +qdJ +xIj +aUH +sIA +gSj +aXA +nIN +xzh +gNo +xzh +lbO +nIN +gfN +efj +sxE +nIN +rgL +rgL +rgL +rgL +nIN +kUL +tMU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +deq +iGc +wDr +mFL +mFL +iFp +wNz +wNz +wNz +oWE +wNz +wNz +suU +bwP +bwP +bwP +jeb +iow +aMO +qGc +hxe +rth +hXd +guW +aQM +rth +hxe +xHp +aUi +iow +jeb +fZE +meQ +rTA +tAW +stR +bCz +bDV +bGw +bGw +bGw +bGw +bNA +bKA +bdj +oMe +bdj +bKA +bNA +bGw +bDV +bGw +bGw +bGw +bCz +oSM +oYi +sIR +awE +dnP +vra +wTw +bNE +wDJ +ivs +nyQ +vqI +vWB +bSK +nyQ +ivs +bUi +bUT +wTw +vra +fqA +fqA +fqA +dBg +aqL +aqL +buY +aqL +aqL +aqL +uWm +nRA +nRA +wDr +jPx +wdW +lyW +aaa +aab +aaa +aaa +"} +(195,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +tob +tob +njn +rWz +rWz +rWz +rWz +njn +xXT +sVV +tkR +njn +ugo +uTl +cGR +wnb +adO +jkj +ahh +aiw +adO +eMr +lGh +xIj +ioU +pvK +qPE +xqD +ioU +ntj +ntj +ntj +ntj +ntj +cnE +liJ +hgB +cbn +aHq +eMr +gqz +shC +aUd +ckK +iKM +aHM +nIN +xzh +gNo +dMj +vNo +nIN +nme +sfT +vAH +nIN +rgL +rgL +rgL +rgL +nIN +edG +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +lfx +gSH +wDr +mFL +mFL +iFp +wNz +wNz +wNz +wNz +wNz +wNz +suU +bwP +bwP +bwP +aLT +aLT +aLT +aLT +ozq +ueZ +aPK +aLT +aQN +wsR +dAq +aQL +aQL +aQL +aQL +dQV +meQ +dAm +fEF +fZE +bCA +bCA +bdj +bCA +bCA +bdj +bCA +bCA +bdj +bCA +bdj +bCA +bCA +bdj +bCA +bCA +bdj +bCA +bCA +oSM +oYi +sIR +awE +gvK +bJC +bJC +bJC +bJC +cib +xvE +bQZ +bJC +bSL +moM +rXS +bSJ +bSJ +bSJ +bSJ +fqA +fqA +fqA +dBg +aqL +aqL +aqL +aqL +aqL +aqL +uWm +nRA +nRA +wDr +nEl +mgb +lyW +aaa +aab +aaa +aaa +"} +(196,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +hoT +hoT +njn +njn +njn +njn +njn +njn +ehL +kyr +chb +njn +njn +njn +eDe +njn +njn +lFt +ahh +aiw +adO +ogT +yiu +xIj +ioU +qyZ +wTd +cmK +cyP +kSi +mmn +kSi +qyA +kXu +jHC +liJ +qmP +uoH +aHq +xIj +lGh +xIj +aUH +dbv +lII +aWc +nIN +rBD +nIN +nIN +nIN +nIN +tCx +ncG +tZg +nIN +nIN +nIN +nIN +nIN +nIN +jtU +jtU +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +oif +nRN +wDr +mFL +mFL +iFp +wNz +wNz +wNz +wNz +wNz +wNz +suU +bwP +bwP +bwP +aLT +kaB +vVb +aLT +aOy +aOz +mKb +aLT +vbM +aRP +aSH +aQL +mJP +bSn +aQL +hEm +kti +eFa +fEF +exQ +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bri +bdj +bri +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bCB +uuI +oYi +mkx +bIW +eMZ +bJC +jSp +lAQ +bJC +bOZ +bPa +vhR +bJC +mWQ +bTy +bUf +bSJ +hII +iJS +bSJ +fqA +fqA +fqA +dBg +aqL +aqL +aqL +aqL +aqL +aqL +uWm +nRA +nRA +wDr +xgS +svF +lyW +aaa +aab +aaa +aaa +"} +(197,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +vHn +hoT +tob +lso +hoT +tob +tob +hqm +rpG +cSa +aeA +sjz +hbl +qYz +cGR +cGR +jsA +cdZ +aiw +ahh +aiw +nph +xIj +poD +xIj +ioU +mSz +nIG +cSk +ene +aGN +aGN +suy +uaV +uaV +nSS +iKf +aGN +qrv +aHq +vcG +qdJ +xIj +amM +ckd +mQC +aHM +aZv +xzh +xzh +kya +qoM +aZv +wcm +lJY +guo +rXF +fLi +vpf +uBx +jtU +jtU +vpf +vpf +woU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +vaV +qxJ +wDr +lFw +wWt +wWt +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +aLT +aLT +aLT +sXt +aMQ +aNI +bfy +aMz +sHY +aLT +msm +aRT +xMR +aTw +aUj +kLk +aQL +npw +vzi +eFa +fEF +rbd +bdk +bdk +bgR +bwc +eqP +pUp +bdk +bdk +brj +bQQ +fSl +bdk +bdk +pUp +eqP +myJ +eKI +bdk +bdk +cxF +oYi +mkx +fic +kjW +bJC +ojF +bNG +bOx +chR +bJD +mzg +bJC +ycZ +bTA +cIr +gHo +bUU +uDW +bSJ +bSJ +ljv +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +fCg +fCg +geu +wDr +wtk +mgb +lyW +aaa +aab +aaa +aaa +"} +(198,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abh +cGd +cGd +moK +cGd +cGd +cGd +cGd +cGd +wYa +nBK +mzS +njn +njn +njn +njn +cGR +njn +afP +ahh +aiw +nph +xIj +yiu +xIj +ioU +ioU +ioU +ioU +nmV +oeM +oeM +pUd +oeM +eed +udZ +aGN +aGN +pSU +aHq +upW +qdJ +xIj +amM +drk +mQC +mkG +nIN +qHT +nIN +nIN +nIN +nIN +nuM +uHr +xwX +mRU +mRU +mRU +mRU +mRU +gBs +mRU +mRU +uOi +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +lfx +gUn +wDr +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF +wDr +aLT +aLT +aLT +aLT +aLT +aLT +tNR +aMP +eAg +aLT +qoJ +aRZ +aSI +aQL +aQL +aQL +aQL +aQL +uBj +eFa +fEF +wMB +bdl +bdl +bdl +bdl +bdl +bdl +bGo +bGo +qjY +pCr +jpD +cpK +cpK +bdl +bdl +bdl +bdl +bdl +bdl +opd +oYi +mkx +jwP +bJC +bJC +bJC +bJC +bJC +mjS +bNF +szM +bJC +qrc +bTE +syH +bSJ +bSJ +bSJ +bSJ +bSJ +ljv +wDr +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp +wDr +nEl +xbg +lyW +aaa +aab +aaa +aaa +"} +(199,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abh +acx +vuG +aeC +aeA +aeA +axw +aeA +bbe +aeA +aeC +aeA +bbe +aeA +aeA +njn +cGR +njn +afQ +aiw +aiw +nph +xIj +yiu +xIj +ioU +lPO +vJg +ioU +vQf +oeM +oeM +eed +oeM +eed +vQq +eEo +aGN +rub +aHq +sgH +qdJ +xIj +amM +eqB +obC +hcf +nIN +nhN +nIN +lJY +lJY +lFK +lJY +vcE +lJY +lFK +lJY +lMY +lJY +qvI +lJY +mCL +rRq +uOi +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +kyw +oxn +oxn +wDr +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF +wDr +aLT +aLT +bbY +bdr +bdz +bdr +bft +bgU +bhG +aLT +bjs +blA +bno +bpC +brn +aRT +buM +aQL +fZE +eFa +fEF +wMB +bdl +bEr +bEs +bIs +bdm +rbY +eAG +bOK +bPD +bYa +bPD +jOk +bNB +tiE +xGo +bYu +nmK +caf +bdl +oDU +oYi +mkx +oSM +bJC +cdT +cfo +cgq +cfo +chM +cjd +cjA +bJC +ckr +ckQ +clh +clg +clI +clg +clW +bSJ +ljv +wDr +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp +wDr +cZI +xGT +lyW +aaa +aab +aaa +aaa +"} +(200,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abi +acz +aeA +aje +amF +asA +ayb +amF +amF +amF +ayb +asA +amF +kmE +aeA +njn +xzx +njn +ahJ +ahJ +ahJ +adO +xIj +poD +xIj +ioU +dnS +viN +bAu +nVB +eHY +oeM +eed +oeM +eed +iLf +aRi +aGN +qrv +aHq +fsh +qdJ +xIj +aUH +aGz +aGz +aGz +nIN +lZJ +nIN +lJY +qbx +dcp +yeH +sSl +dcp +dcp +dcp +sSl +yeH +dcp +nja +lJY +xxZ +uyC +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +emA +vIg +vIg +wDr +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF +wDr +aLT +aLT +bca +aMC +aLT +avv +bfu +rGj +aQT +aLT +aTv +blB +bnp +aTx +aQL +aUY +buN +aQL +fZE +eFa +fEF +wMB +bdl +bDX +bCA +bCA +bdj +rbY +bEc +bKA +bCA +bQS +bCA +bKA +bEc +tiE +tjl +rIH +tUh +cag +bdl +jDz +oYi +mkx +oSM +bJC +cdU +bMy +bJC +cog +chN +mzg +cdP +bJC +dpO +ckX +cli +coj +bSJ +bVo +clX +bSJ +ljv +wDr +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp +wDr +cOo +rJf +tcO +aaa +aab +aaa +aaa +"} +(201,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abi +acA +aeA +ajk +aeA +aeC +aeC +aeC +cVb +aeC +aeC +aeC +vOh +gUX +ily +njn +eDe +njn +aeC +aeC +aeC +mdm +xIj +poD +xIj +ioU +pPM +qKz +ioU +mGu +fXx +fXx +kXf +huO +iLO +qLV +xNv +iLO +bUa +aHq +ogT +lGh +xIj +mdm +vcE +vcE +vcE +nIN +rBD +nIN +cBb +xVS +lJY +vcE +vcE +vcE +iTd +vcE +vcE +vcE +eKH +lVo +lJY +kAm +uyC +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +emA +gPS +gPS +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +aLT +aLT +aLT +aLT +aLT +aLT +bfx +rGj +aQT +aLT +aTv +blB +kiU +aQL +aQL +aQL +aQL +aQL +dQV +eFa +fEF +fNH +bdl +bDY +bCA +bCA +nLt +gmb +bNQ +bNQ +bNQ +bNQ +bNQ +bNQ +bNQ +nXU +bKA +jac +bCA +cah +bdl +wPi +oYi +mkx +gvK +bJC +bJC +bJC +bJC +bJC +chO +mzg +cdP +bJC +dpO +ckX +clj +bSJ +bSJ +bSJ +bSJ +bSJ +ljv +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +wDr +nGM +hIp +tcO +aaa +aab +aaa +aaa +"} +(202,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +abh +acx +ahz +ajs +aeC +aeC +lJI +kNF +kNF +kNF +jnJ +aeC +aeC +ajs +aeC +mzS +aeC +oZI +fjo +fjo +opu +hlj +iso +ceV +nsH +alL +alL +alL +jvY +jvY +jvY +jvY +jvY +jvY +jvY +jvY +jvY +alL +alL +alL +iso +ceV +nsH +hlj +nvz +ner +ner +vdR +uHr +nuM +vcE +kUV +vcE +vcE +vsq +cxB +cxB +cxB +dBc +vcE +vcE +kUV +cil +rRq +uOi +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +emA +jEM +ikT +owU +iTq +ikT +jEM +kjY +riB +fGi +qan +jkN +jUh +tIF +bCk +jkN +aLT +bco +aMB +bdA +aLT +ial +rGj +aPl +aLT +aPn +aRU +bnr +aQL +brr +aUZ +buO +aQL +fZE +eFa +fEF +tLZ +bdl +bDZ +bdj +bri +bLX +bdl +kSU +bNP +bmD +bNP +bmD +bNP +bmD +mYv +doP +jac +xxa +cai +bdl +tkg +oYi +mkx +oSM +bJC +cdV +bMx +cgr +bJC +raK +mzg +bgW +bJC +ckR +ckX +iyS +bSJ +clJ +bVn +clY +bSJ +ljv +dnZ +eHy +eHy +eHy +cyp +oaO +lWY +ljv +jiM +ere +lYg +lYg +sEu +lia +tcO +aaa +aab +aaa +aaa +"} +(203,1,1) = {" +aaa +aaa +aab +aaa +aae +aah +aah +aah +aah +aag +aag +aag +aag +aag +aag +aag +aag +abh +acx +pMk +ajs +aeC +wXh +hYo +atr +lMy +aex +wkZ +wXh +aeC +ydz +ayb +jxq +fbV +msS +asA +asA +msS +nZf +rho +jIs +emL +jvY +jvY +jvY +jvY +apW +aqV +asH +aui +avN +aqV +axV +jvY +jvY +jvY +jvY +gqI +iCT +qnH +nZf +ohi +yeH +yeH +ohi +oJK +qnX +sSl +kkx +vcE +kpo +mDR +tGi +cea +bXe +leU +kpo +vcE +kUV +xyL +rRq +uOi +aag +aag +aag +aag +aag +aag +aag +aag +aah +aah +aah +aah +afm +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +emA +kJZ +kjY +fGB +snN +jEM +ikT +jEM +lty +eTD +lty +jEM +ikT +kjY +bCk +heO +aLT +bco +bdr +bdA +aLT +bfw +rGj +aQT +aLT +aTv +blB +vJV +aQL +brr +aRT +buO +aQL +fZE +eFa +fEF +xpc +bdl +lOr +lOr +iwI +bdl +bdl +reH +bNP +bmD +bNP +bmD +bNP +byu +obo +tiE +bYv +tiE +tiE +bdl +fJt +oYi +mkx +oSM +bJC +cdV +cfo +cgr +bJC +chQ +mzg +cdP +bJC +dpO +ckX +clk +bSJ +clJ +clg +clY +bSJ +ljv +eaz +lYg +lYg +aqH +oxl +wac +mjy +ljv +ien +xhO +xhO +xhO +cmN +srl +tcO +aaa +aab +aaa +aaa +"} +(204,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +aaa +aae +aah +aah +aah +aah +aah +aah +aah +abi +nGY +gyU +ajk +aeA +lgf +dbK +atr +iDK +atr +tqG +kEV +aeA +ajk +aeA +fXO +aeC +pdo +nBK +nBK +wYa +hlj +giW +puP +tfF +jvY +arg +atf +jvY +apX +aqb +asI +aqb +avO +aqb +axW +jvY +aMm +aOq +jvY +bgM +puP +tfF +hlj +xwX +uHr +uHr +ehm +nXG +qYd +lJY +xVS +lJY +iyf +roB +faO +cOd +bXe +joS +leT +lJY +xVS +kPH +knL +uyC +aah +aah +aah +aah +aah +aah +aah +afm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +emA +emA +emA +emA +emA +sEg +ikT +jEM +ahL +bFl +nZW +jEM +ikT +jEM +jEM +bCk +aLT +bcZ +bdr +bdC +beR +bfy +rGj +aQT +aLT +aTv +blB +bnt +bpG +brs +aRT +bew +aQL +atH +dAm +aCX +atH +mCo +iwZ +jFy +bKA +oNW +dmF +pXV +bNP +bmD +bNP +bmD +bNP +bmD +lyk +bOR +eHa +cmo +xAB +mCo +brq +wwv +sIR +brq +bJC +bKX +cfo +cgs +chk +chR +mzg +cdP +bJC +dpO +ckX +cll +clE +clK +clg +bVy +bSJ +ljv +ljv +ljv +ljv +tWl +jer +ljv +ljv +ljv +jEA +hCq +tcO +tcO +tcO +tcO +tcO +aaa +aab +aaa +aaa +"} +(205,1,1) = {" +aaa +aaa +aab +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +abi +dEJ +gyU +ajk +aeA +dtE +akX +atr +iDK +atr +taI +qMo +aeA +ajk +ily +cMx +fVk +cMx +rjX +aeC +beN +mdm +lLt +qdJ +vCv +jvY +arh +atm +jvY +apY +aqb +asJ +aqb +avP +aqb +axX +jvY +nSG +aOs +jvY +lLt +poD +vCv +mdm +rmo +vcE +uul +yat +qLk +yat +cBb +xVS +lJY +tRh +sij +bXe +cOd +tGi +gkg +qxn +lJY +xVS +kPH +qGU +uyC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +emA +tcm +ikT +jEM +uzv +tYr +uzv +jEM +ikT +hYf +jEM +ikT +aLT +bco +bdr +bdA +aLT +bfD +aPj +aPl +aLT +aPn +blB +sNb +aQL +brr +aRT +buO +aQL +jpW +eFa +svw +mzv +bmv +bEg +bGU +bGU +bKz +snw +qsC +bNL +bNL +bNL +bNL +bNL +bNL +bWL +bXH +bYw +nDM +bWL +sSa +bRo +dOG +gKw +tgz +bJC +cdV +cfo +cgr +bJC +foL +mzg +bgW +bJC +ckR +ckX +loS +bSJ +clJ +clg +clY +bSJ +bXh +lYg +lYg +lYg +sEu +eaz +ere +lYg +lYg +sEu +gEh +tcO +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(206,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +abh +acx +gCB +ajs +aeC +wXh +hYo +atr +rmG +bXz +wkZ +wXh +aeC +ajs +qon +cMx +gqx +aep +ggQ +ggQ +aME +aep +lLt +lGh +vCv +jvY +ari +aoP +jvY +apZ +aqb +asK +aqb +avQ +aqb +aqa +axo +atm +aOr +jvY +lLt +poD +vCv +aep +aME +ggQ +aME +aep +dcX +yat +dHe +kUV +vcE +kpo +mDR +bXe +sZY +mzF +leU +kpo +vcE +kUV +bxA +rRq +uOi +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +emA +hyb +fGB +kjY +yia +ugZ +kcG +fBo +ikT +jEM +jEM +ikT +aLT +bco +aMC +bdA +aLT +bfx +bgY +aQT +aLT +aTv +blB +nCp +aQL +brr +aUY +buO +aQL +fZE +eFa +fEF +tLZ +mCo +bEh +bNQ +bNQ +bNQ +pjG +boy +bpQ +bpQ +bsJ +bpQ +bpQ +bxf +bZr +bKA +bKA +cXR +cal +mCo +wcD +oYi +mkx +oSM +bJC +cdV +bMy +cgr +bJC +chP +mzg +cdP +bJC +dpO +ckX +cln +bSJ +clJ +bVo +clY +bSJ +tgm +xhO +xhO +xhO +xhO +gEh +sOD +gEh +xhO +xhO +tWp +tcO +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(207,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +abh +acx +aeB +ajs +aeC +aeC +dBi +xMy +pZj +pZj +bjM +aeC +aeC +ajs +aeC +cMx +qbw +aep +afj +afk +agM +aep +lLt +yiu +vCv +jvY +arj +atm +jvY +xRH +aqb +aqb +aqb +aqb +aqb +aqb +bzD +atm +aOs +jvY +lLt +yiu +vCv +aep +aHS +afk +sHo +aep +cnm +yat +vcE +kUV +vcE +vcE +grJ +nHs +nHs +nHs +iXV +vcE +vcE +kUV +riP +rRq +uOi +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +emA +emA +emA +emA +emA +emA +emA +emA +emA +emA +iTq +snN +aLT +aLT +aLT +aLT +aLT +hQW +bgY +aQT +aLT +aTv +blB +qhU +aQL +aQL +aQL +aQL +aQL +fZE +eFa +fEF +bNr +bdl +bEi +bZr +bmD +ngw +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +bKA +bKA +cir +bdl +bdl +sXC +oYi +mkx +oSM +bJC +bJC +bJC +bJC +bJC +uUo +mzg +cdP +bJC +dpO +ckX +sUO +bSJ +bSJ +bSJ +bSJ +bSJ +cZp +xhO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(208,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +abi +acX +aeA +aju +amH +aeC +aeC +aeC +cVb +aeC +aeC +aeC +aeA +ajk +aeA +cMx +qbw +aep +afk +afk +afk +aep +lLt +poD +vCv +jvY +ark +atm +jvY +bhf +aqb +asL +aqb +avR +aqb +kTv +axo +atm +thv +jvY +lLt +yiu +vCv +aep +afk +aHl +afk +aep +rZZ +yat +lJY +itR +kKR +vcE +vcE +vcE +iTd +vcE +vcE +vcE +lJY +xVS +lJY +hki +uyC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +ikT +jEM +aLT +bcE +aMB +bdD +aLT +bfz +bgY +aPl +aLT +aPn +blB +bnu +aQL +brt +aUZ +buS +aQL +fZE +eFa +fEF +tLZ +bdl +brp +bZr +bmD +xId +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +bNQ +bNQ +bNQ +bGz +egD +oQn +oYi +mkx +oSM +bJC +cdX +bMx +cgt +bJC +chS +bQA +bgW +bJC +ckR +ckX +meu +bSJ +clL +bVn +clZ +bSJ +tgm +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(209,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +abi +acY +aeA +ajv +amF +asA +ayb +amF +amF +amF +ayb +asA +amF +ohL +aeA +cMx +oVo +aep +aep +aep +aep +aep +umI +ddO +umI +jvY +alL +atk +jvY +jvY +axo +axo +axo +axo +axo +jvY +jvY +aAy +alL +jvY +umI +juj +umI +aep +aep +aep +aep +aep +lla +yat +lJY +ucw +dcp +yeH +sSl +dcp +dcp +dcp +sSl +yeH +dcp +lMp +lJY +jbt +uyC +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +qGC +jEM +aLT +bcE +bdr +bdD +aLT +rrq +bgY +aQT +aLT +aTv +blB +mtr +aQL +brt +bpC +buS +aQL +bMf +eFa +fEF +tLZ +bdl +bEl +wup +bmD +hBz +pjG +boA +bpR +bpR +bsK +bpR +bpR +bxh +bZr +krN +krN +krN +oqY +lde +oSM +oYi +mkx +oSM +bJC +cdX +cfo +cgt +bJC +chQ +cjf +cdP +bJC +dpO +ckX +xoe +bSJ +clL +clg +clZ +bSJ +xMm +pFr +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(210,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +abh +acx +aeA +aeA +aeA +aeA +aeC +aeA +aeA +aeA +aeC +ntI +aeA +aeC +puO +cMx +qbw +xnh +aep +aep +aep +aep +sHI +jao +qhT +jvY +arl +atm +alL +awv +axu +azc +aAZ +aDa +aFh +aHr +alL +aMo +aOt +jvY +sHI +lOn +wCe +oIB +jgr +cXz +rtc +oIB +cnm +yat +lJY +uxC +lJY +lJY +fFe +lJY +lJY +lJY +vcE +lJY +lJY +lJY +lJY +rRq +uOi +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +ikT +jEM +aLT +abS +bdr +bdC +beS +bfy +bgY +aQT +aLT +aTv +blB +bnt +bpH +brs +bpC +abT +aQL +atH +dAm +aCX +atH +bdl +buz +bZr +bmD +dmE +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +ibc +uly +bNN +vbR +eGq +uuI +wwv +sIR +brq +bJC +ack +cfo +cgs +chl +chR +cjf +cdP +bJC +dpO +ckX +cll +clF +clK +clg +acp +bSJ +qKK +gEh +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(211,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abh +abh +abh +abh +aeC +atr +aeC +atr +aeC +cMx +cMx +cMx +cMx +mRI +cMx +cMx +qbw +rYU +cMx +cMx +cMx +cMx +sHI +jao +qhT +jvY +abF +atm +auH +atm +atm +atm +aBb +aFi +aFi +aHs +aIT +atm +aVF +jvY +sHI +aPC +pKH +oIB +fXE +kaS +aiQ +oIB +cnm +yat +yat +kNq +kNq +qDB +kNq +kNq +vcE +bXe +vcE +bXe +vcE +uOi +uOi +uOi +uOi +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +ikT +aLT +bcE +aMC +bdD +aLT +bfC +bgY +aPl +aLT +aPn +aRX +cSQ +aQL +brt +aUY +buS +aQL +fZE +eFa +fEF +hvz +bdl +bEm +bZr +bmD +hAc +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +xBV +uys +uys +uys +uys +bfd +oYi +mkx +oSM +bJC +cdX +bMy +cgt +bJC +chV +cjf +bgW +bJC +ckR +bTC +mvl +bSJ +clL +bVo +clZ +bSJ +hTU +lNk +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(212,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +abh +aeC +atr +aeC +atr +aeC +cMx +jrC +jYa +cMx +wFX +cMx +kqa +qbw +oVo +cMx +oVo +oVo +cMx +nSw +qsG +qhT +jvY +jvY +jvY +jvY +awx +awx +azd +aBc +aDb +awx +awx +jvY +jvY +jvY +jvY +sjG +lOn +qhT +oIB +wqr +bZw +xUV +oIB +cnm +cjm +yat +toD +wDq +aPO +sNP +kNq +vcE +bXe +vcE +bXe +vcE +uOi +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +rIV +dYc +aLT +aLT +aLT +aLT +aLT +bfx +bgY +aQT +aLT +aTv +blB +sNb +aQL +aQL +aQL +aQL +aQL +edn +qRd +gtH +edn +bdl +bpT +bNN +bNN +bNN +bmB +boB +bpS +bpS +bsL +bpS +bpS +bxi +bZr +bKA +dyx +eYr +bUo +uys +kKB +rsL +jts +kKB +bJC +bJC +bJC +bJC +bJC +chW +rvT +cdP +bJC +dpO +ckX +hAZ +bSJ +bSJ +bSJ +bSJ +bSJ +xsv +gEh +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(213,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +abh +aeC +atu +azU +aeC +ldl +cMx +qbw +iAI +cMx +tvA +cMx +iml +fIK +kZc +wuS +fIK +fIK +wuS +tzF +qsG +qhT +alL +urM +dBG +jvY +jvY +jvY +jvY +aBf +jvY +jvY +jvY +jvY +wjv +fDG +alL +sHI +aPC +tzF +qgK +tEB +uBM +dXo +oIB +fME +kon +yat +swG +jei +aPO +hIX +kNq +vcE +pxJ +swM +vcE +fFe +uOi +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +kDd +aLT +bdJ +bds +aLT +bpL +bfE +njd +aQT +aLT +aTv +blB +uvu +aUZ +aQL +bsS +mqK +aQL +bqc +tcS +mww +sZe +bdl +bEp +bCA +wlh +cvb +bmC +nwG +lDL +nwG +lMw +jeO +nQv +ltb +bmD +bKA +dyx +hGN +pVx +uys +wKm +ekM +aVM +wVm +bJC +cfp +cgu +bJC +bMx +chQ +cjf +cdP +bJC +dpO +ckX +clo +bVn +bSJ +clM +clS +bSJ +cZp +gEh +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(214,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +fTl +taw +taw +taw +mRI +taw +cMx +vPT +iAI +cMx +wTn +cMx +cLd +qbw +pTI +cMx +oVo +oVo +cMx +nWf +lOn +acQ +kwd +amw +anO +arq +arq +arq +aze +xYZ +aDe +arq +arq +arq +anO +qaV +kwd +acQ +lOn +qhT +oIB +wKF +hzb +ltU +oIB +wSB +gAO +yat +bCR +jei +aPO +fJp +kNq +kNq +kNq +kNq +qDB +kNq +fVe +aag +aag +afm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +ikT +aLT +beT +bdr +bkg +aMz +bfy +bgY +aPl +aLT +aPn +blB +bnt +aRT +ihY +bpC +dnE +aQL +qfI +dpA +ggo +lhs +bdl +tiE +tiE +tPj +tiE +tiE +bdl +bdl +fnI +agv +bdl +bdl +bdl +kFO +kFO +uys +uys +uys +uys +gyw +bFX +gyw +hza +bJC +bMA +cfo +chm +bJD +chR +cjf +bgW +bJC +ckR +ckX +cll +bTA +clG +clg +bVq +bSJ +ien +dFL +tcO +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(215,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +fTl +vrZ +qlu +taw +wTn +kCu +cMx +sdd +iAI +cMx +wFX +cMx +nDH +qbw +rYU +cMx +oVo +rYU +cMx +nXV +qMI +rUN +aqg +oOW +atn +atn +atn +sAw +anP +aBh +anP +anP +iJs +dFN +atn +aOB +aRj +rUN +hft +swn +oIB +phj +vEf +cNK +oIB +xiW +mCg +ryJ +aPO +aPO +aPO +jei +jei +lYt +jei +jei +aPO +jei +fVe +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +sEg +ikT +aLT +aLT +aLT +aLT +brv +nuA +bgY +aQT +aLT +aTv +blB +oiQ +lml +aQL +aQL +aQL +aQL +oxe +tcS +mww +sZe +bdl +fKT +bGy +kOW +snM +iqo +bdl +clV +crD +kLP +gvU +cyo +bdl +hTP +tXj +sgc +xCa +bUy +bdl +eTx +ekM +cJs +pOW +bJC +bJC +bJC +bJC +cdf +jxx +cjf +cdP +bJC +dpO +ckX +rXj +gfo +bSJ +bSJ +bSJ +bSJ +cZp +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(216,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +fTl +hjT +rWb +taw +oAK +kCu +cMx +fVk +cMx +cMx +tvA +cMx +oVo +qbw +oVo +cMx +iVz +rAS +cMx +sHI +lOn +acQ +kwd +eDT +amx +amx +amx +awy +amx +amx +amx +amx +amx +mpZ +amx +aoT +kwd +acQ +tof +wCe +oIB +cHC +dha +pxj +oIB +wSB +hYj +yat +fPF +jei +nNT +lsj +ump +oWU +oWU +oWU +uUy +jei +fVe +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +ikT +aLT +beT +bdr +bpK +aMz +bfy +bgY +aQT +aLT +aTv +blB +bnt +aRT +mUx +bpC +dnE +aQL +bqc +tcS +mww +sZe +bdl +fgm +wEF +rHN +kuu +mDj +bdl +jre +dXG +nqx +hzg +vBU +fIX +fnI +ipa +fYZ +vYC +noj +hpS +gyE +ekM +cJs +pOW +bJC +bMA +cfo +chn +bJD +chR +cjf +cdP +bJC +dpO +ckX +cll +bTA +clH +oFV +bVq +bSJ +vUJ +hCq +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(217,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +fTl +qlu +uKl +kiR +oxy +oQL +jsu +oQL +gqt +oxy +oxy +vTE +qbw +qbw +oVo +cMx +cMx +cMx +cMx +sHI +jao +qhT +alO +ars +amx +amx +aqf +pzX +amx +amx +amx +amx +amx +mpZ +amx +aOC +alO +sHI +tof +qhT +loP +loP +loP +loP +loP +qej +loP +loP +kNq +fJp +aPO +sty +dJe +unQ +nxe +tjH +fGn +oUx +fVe +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +ikT +jEM +aLT +beU +bdv +aLT +bry +bfu +bgY +jVr +aLT +kXa +blB +chL +lAl +aQL +bsW +xvX +aQL +bqc +noI +dJG +sZe +bdl +ntd +jCm +eqb +mLR +hdE +bdl +krZ +ixQ +kWk +xyY +nwY +bKA +fnI +cwo +scH +nzO +kxL +hpS +gyE +nzt +jhs +pOW +bJC +cfq +cgv +bJC +wqc +chN +cjf +lok +bJC +ihM +ckX +clm +hXY +bSJ +clN +clT +bSJ +xsv +gEh +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(218,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +fTl +wIu +wXJ +taw +oNK +xgw +jGG +qMu +oxy +oQL +hdy +cMx +oVo +qbw +oVo +cMx +oaP +jhQ +cMx +kYb +jao +qhT +inw +eDT +amx +amx +amx +amx +amx +amx +amx +amx +amx +aBo +amx +aoT +inw +sHI +tof +nii +loP +iwB +tOC +mHo +vqL +xBY +qwo +loP +ang +hqu +aPO +sty +fJp +iCD +iCD +iCD +fGn +jei +fVe +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +qGC +jEM +aLT +aLT +aLT +aLT +bwe +cuY +aPo +aLT +aLT +aQL +aSa +bnA +xhQ +aQL +aQL +aQL +aQL +bqc +ubQ +fpM +bEk +bdl +tFS +bdj +bNs +nwb +mrM +bdl +ycH +pMJ +xnI +ayj +dWg +bdl +oTe +ixN +jaR +mJa +wWP +rsK +cBC +feo +ekM +pOW +bJC +bJC +bJC +bJC +qFG +pvJ +bQD +bJC +bJC +bSJ +hss +clp +hfQ +bSJ +bSJ +bSJ +bSJ +goM +tfQ +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(219,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aag +aag +fTl +taw +taw +taw +wTn +aqi +tuJ +xyf +oxy +oQL +oFr +cMx +xnX +qbw +oVo +cMx +oVo +oVo +cMx +sHI +jao +qhT +inw +eDT +amx +auB +aqh +sqo +sqo +aDh +aDh +mux +aya +aBo +amx +wwJ +inw +sHI +cNC +qhT +loP +joG +sDu +kxo +wSn +xBY +lKa +loP +fvo +jei +aPO +sty +kNq +jcE +jei +fCv +lAm +dhp +fVe +aag +aag +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +emA +emA +emA +emA +ikT +ikT +aLT +vZb +tnY +gjy +tIQ +cic +ceg +mdo +mJj +tnz +nYc +bnB +aVd +hMX +uqA +bES +kcl +bqc +ubQ +uPX +rHr +bdl +wIr +aQy +jAB +iYt +bMa +bdl +rDe +nUa +ufJ +rCK +cTf +bdl +bdl +nPT +nPT +bdl +bdl +bdl +jLg +uEO +ekM +pOW +hNw +wos +bMC +fcB +rUh +jLj +wPC +xZU +hNw +hmC +rQA +hjs +ivM +hcI +hcI +vPK +bSJ +cZp +gEh +tcO +tcO +tcO +tcO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(220,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +hEr +oQL +kiR +oxy +aqi +qlu +aIe +oxy +xgw +rlJ +cMx +nDH +qbw +pTI +cMx +oVo +oVo +cMx +nWf +jao +qhT +inw +qHM +emn +rdI +alO +ptf +ptf +aBi +aDi +alO +aye +aBo +amx +aBs +inw +sHI +cNC +qhT +loP +kxo +wSn +kxo +kdi +xBY +kxo +loP +nSk +jei +aPO +sty +kNq +cke +hqu +xeW +wXo +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +hyb +kjY +kcG +tIF +jEM +ikT +aWT +aMH +beV +gWE +udG +aOK +dRv +mdo +mJj +ljs +hsW +mFO +bJE +aRT +hSV +bES +kcl +bqc +sUk +slo +bdl +bdl +bdl +bdl +bdl +bdl +bdl +bdl +bdl +xWo +bdl +bdl +bdl +bdl +reN +dEp +reN +htk +dEp +bdl +bdl +udf +iyC +pOW +hNw +oMr +tPD +bJD +nrw +spS +lBv +pXZ +hNw +iIR +sDM +clr +nvT +aMI +wGE +erG +ewO +sEu +xhO +ffx +jhK +srl +lWY +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(221,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +hEr +xBS +taw +tTG +aqi +wIu +iUJ +oxy +aqi +ixu +cMx +tNY +qbw +qbw +vTE +qbw +qbw +rWy +kGS +lOn +wCe +alO +alO +alO +alO +alO +axx +amw +anO +aDj +ptf +aye +mpZ +amx +aBs +alO +sHI +tof +kGS +fTF +xBY +xBY +xBY +xBY +xBY +jGI +loP +kNq +fJp +nOx +sty +kNq +kNq +kNq +kNq +cyf +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jkN +ikT +ikT +ikT +ikT +ikT +aLT +aZf +duV +duV +eUA +bfx +bgY +mdo +mJj +byn +mUP +bnt +bJH +aRT +hSV +bES +kcl +bqc +ubQ +kwi +lZM +rSR +xss +rLK +xss +xss +uHk +dXb +dXb +dXb +cTX +xss +xss +dXb +ndm +xss +iFY +dXb +xss +xss +lZM +kYl +ekM +pOW +hNw +sZq +tPD +bJD +bOQ +chR +cjg +urN +hNw +bNC +ckX +vuL +fDh +jGR +jGR +oqu +bSJ +gEh +gEh +gEh +gEh +gEh +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(222,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oqc +smw +taw +oxy +kzQ +mQw +wtm +oxy +aqi +qlu +cMx +qbU +qbw +oVo +cMx +oVo +oVo +btb +sHI +lOn +qhT +alO +gKZ +vTv +auL +alO +axy +azh +aBk +aoT +ptf +aye +mpZ +amx +aBs +alO +uSk +cNC +qhT +gdS +wSn +kXN +fuT +odD +xBY +mOg +oHx +aPO +iXB +aPO +lPc +oFP +eMb +eMb +eMb +gnG +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +fGi +ikT +aLT +aLT +aLT +aLT +aLT +aLT +mhI +bjA +xSW +bAd +bCS +aLT +aLT +ksp +bOG +brH +chp +jRH +nks +aQL +aQL +lhs +bww +tHF +cvx +cvx +bKJ +cvx +cvx +cvx +cvx +vub +vub +vub +owW +vub +vub +vub +cvx +cvx +cvx +bKJ +cvx +cvx +cvx +xQz +bFX +pmd +bJC +bJC +bMD +bJD +vND +chR +tzr +kIP +bJC +bSJ +bTJ +pUf +hji +rPO +ixD +bSJ +bSJ +bSJ +bSJ +bSJ +bSJ +gEh +dFL +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(223,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +taw +taw +taw +wTn +oQL +oQL +lUQ +oxy +fGM +iDs +cMx +qbU +qbw +rYU +cMx +pVh +mSl +btb +sHI +jao +qhT +alO +arz +atq +aoT +alO +aOG +amA +kDH +aOB +laQ +arr +iav +atc +aOF +alO +sHI +cNC +qhT +gdS +lBg +dXd +loP +loP +xeU +loP +loP +kNq +hnt +aPO +xud +flK +pKx +flK +flK +eYv +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +ikT +aLT +bBg +vPv +oTA +vPv +rAN +gRS +aNc +aNQ +aOL +iIO +hRd +aLT +aQL +bmh +bnX +aRo +brA +tFP +lQz +aQL +bqc +qIf +bqc +bbs +cbh +xYP +bbs +gsm +bCM +rbF +cJE +bOT +dLt +bRe +iFD +vRa +vub +bPL +bCM +xSM +cgE +gsm +bCM +bbr +uPE +ekM +pOW +bJC +jht +jZv +bJD +cgy +lbX +uxp +bJC +bJC +bSZ +eIG +cll +bUN +sAc +oQB +mAV +hzu +qNd +hzu +hcI +bSJ +xhO +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(224,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oQL +mOE +gUG +oxy +oQL +cMx +cMx +fVk +cMx +cMx +cMx +uyQ +qbw +oVo +cMx +cMx +cMx +cMx +sHI +jao +qhT +alO +arz +atq +aoT +alO +axA +amA +aBl +aoT +aFl +arm +aIU +aMq +aOG +alO +sHI +tof +qhT +loP +loP +loP +loP +tGd +vyI +lPB +oHl +jWh +yat +rXq +yat +yat +kNq +kNq +kNq +blQ +oUx +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jEM +jEM +aLT +nuN +nuN +rfa +ipM +ehx +cBs +vme +bwf +tig +nex +aPi +aLT +tDZ +gip +uTv +bKC +bnt +jdm +iaq +aQL +bqc +qIf +bqc +bbs +bKD +vTS +bbs +ccQ +bCN +rbF +qlz +xYf +skn +bQX +ijQ +cLl +qlz +tez +bCN +ccQ +cgE +ccQ +bCN +bbr +uPE +ekM +pOW +bJC +cjC +jZv +lLC +nEo +nZy +tzr +lbf +bJC +bTa +bbu +iWc +bUN +bVb +wty +pWb +hDx +rYp +oEo +uYH +bSJ +xhO +lMO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(225,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oxy +oxy +bCv +oxy +oQL +cMx +aOS +gNI +eTm +cMx +nDH +oVo +qbw +oVo +oDa +yfn +nkc +cMx +sHI +jao +qhT +alO +arz +atq +aoT +alO +alO +alR +aBm +alR +alO +xBe +xBe +xBe +xBe +xBe +sHI +tof +qhT +jWh +eFK +wGd +cZW +pZK +hSk +hSk +uIv +jWh +dnh +bct +iDa +yat +tiY +qAK +xGK +blQ +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +oPF +jEM +aLT +vug +iSZ +muy +vug +vug +tVq +dgE +lJO +uRo +uIJ +aLT +aLT +hWr +gip +xlk +uuj +bRg +dEk +aQL +aQL +ylN +qIf +bqc +bbs +ydM +xYP +bbs +ccQ +cdn +rbF +qlz +gYe +skn +bTx +bKQ +tXM +qlz +tez +bpV +ccQ +cgE +ccQ +cdn +bbr +uPE +ekM +pOW +bJC +bJC +kGF +chq +bRf +onN +cjg +qki +bJC +bSJ +bTM +bUq +rPE +gnu +wty +wWX +wWX +yle +rNd +rNd +bSJ +xhO +xHa +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(226,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +wTn +oQL +qmq +oQL +nXo +cMx +aOS +guP +mHT +cMx +kpL +oVo +qbw +oVo +oVo +oVo +iIU +cMx +uSk +jao +kGS +xHt +arm +ats +auO +awB +axB +ayV +auu +aoT +aFm +xBe +aIV +qqr +arH +xBe +sHI +tof +qhT +vXd +duF +hSk +hSk +vyI +hSk +hSk +uIv +jWh +tFJ +wSB +uBG +yat +jei +ltm +oAT +blQ +cmV +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +rIV +nvI +aLT +iPS +vAE +iKw +vAE +wMG +oSy +wBr +efK +lWG +uIJ +mdo +mJj +bHp +bIU +eyl +tAN +jOi +aVf +bES +kcl +bqc +qIf +bqc +bbs +dvs +xYP +bbs +cdm +bCM +rbF +qlz +fOz +skn +bTx +bTx +dFF +qlz +tez +bCM +ccQ +cgE +ccQ +bCM +bbr +uPE +ekM +pOW +hNw +oMr +lef +xRj +wJD +cjE +ozT +pDB +hNw +bNC +ckX +qgN +bTN +sdC +ivM +gEo +scy +vSW +scy +kPJ +bSJ +xhO +eeR +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(227,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oxy +cMx +cMx +orx +cMx +cMx +dtu +qbw +txf +ncx +whO +pJS +whO +whO +whO +whO +whO +bYL +dlT +qHD +qhT +alO +arA +att +auS +alO +lXg +amA +aBn +aDm +aFn +xBe +azo +aJg +abR +xBe +sHI +tof +wCe +jWh +oih +khE +ctx +vyI +vyI +kpQ +vSE +jWh +dhA +iWn +mnB +yat +jei +ltm +ejj +blQ +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +sEg +kDd +aLT +aLT +aLT +aLT +aLT +aLT +fbb +nTl +bwf +vZt +bEG +mdo +mJj +fIM +fIM +sXw +sXw +vfx +aVf +bES +kcl +lhs +uvh +lhs +kFY +jmK +bDL +bbs +ccQ +bCN +rbF +vub +odN +odN +gcN +odN +odN +vub +tez +bCN +ccQ +cgE +ccQ +bCN +jhb +kAj +bFX +hza +hNw +oMr +ltI +vfa +wdz +wdz +nCf +nCf +hNw +iIR +uMS +qmk +rtV +sgR +tvN +bSJ +bSJ +bSJ +bSJ +bSJ +bSJ +qid +lNk +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(228,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oxy +cMx +cMH +qvF +lat +cMx +aOS +tlM +dan +cMx +cMx +cMx +fVk +cMx +cMx +cMx +cMx +cMx +nWf +cNC +qhT +wDM +wDM +wDM +wDM +wDM +axD +amA +aBo +axe +anO +nFX +atv +auV +amE +xBe +sHI +tof +qhT +jWh +jWh +uUz +jWh +gIJ +qbZ +jWh +jWh +jWh +tFO +wSB +flD +yat +xQe +jei +fCv +lAm +dhp +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +eTD +ikT +aLT +bBg +vPv +oTA +vPv +rAN +jNK +aNc +bwf +iIO +cqz +mdo +mJj +sEd +wDK +sEd +wDK +bRV +bSe +bES +kcl +bqc +qIf +bqc +bBd +aPr +bfl +bSb +byw +bkU +bAY +pur +bxm +bPM +jmK +bRa +bxm +pur +byw +bzI +bAY +bSb +bEa +bFp +bBd +uPE +ekM +pOW +hNw +sZq +lwJ +cgA +oaW +yiW +oaW +yiW +hNw +iIR +koI +bUr +pQN +snR +aNT +qNd +hzu +mAV +hzu +hcI +bSJ +rqz +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(229,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +lmq +cMx +rBY +pTY +ueY +cMx +aOS +gNI +aPg +cMx +uiG +rTZ +tfb +tfb +tfb +tfb +tfb +ptK +sHI +cNC +qhT +wDM +aOM +aoW +aty +wDM +axE +amA +aBp +aDn +atc +nFX +atv +auV +amE +xBe +sHI +cNC +qhT +jWh +xXa +xXa +xXa +pZK +cKL +jbH +rJh +jWh +pld +vhb +tie +yat +cfm +jei +xeW +kkQ +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +efP +ikT +aLT +iDf +iDf +vUb +nuN +nuN +tVq +kiV +bwf +nVa +kJi +aLT +aLT +aQL +aQL +aQL +aQL +csZ +odB +aQL +aQL +bqc +sUk +ade +bBe +bFq +bfm +bhg +bvF +cdo +bvF +bvF +bvF +bRa +bRc +bPM +bvF +bvF +bvF +cdo +bvF +bCD +bEb +bFq +bBe +hWD +iyC +pOW +bJC +bJC +rbH +cEC +bJC +bJC +bJC +bJC +bJC +bSJ +hTc +bUr +ycd +sAc +jrR +uYH +oEo +yfm +vio +vio +bSJ +gEh +xhO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(230,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oxy +cMx +cMx +cMx +cMx +cMx +cMx +fVk +cMx +cMx +bNM +wkX +jhx +jhx +jhx +jhx +dnH +gpc +tzF +uez +qhT +wDM +uto +aoX +auU +aHu +aFt +lEj +nRX +aDo +aFr +xBe +nNY +qKi +abR +xBe +uSk +wHr +tzF +dEt +soP +pDr +soP +pDr +soP +eoG +uIv +jWh +yat +rXq +yat +yat +kNq +fJp +ekz +blQ +oUx +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +uzv +ikT +aLT +cjc +iDf +bUp +cjc +cjc +cBs +bsU +bwg +bCP +jKK +aLT +pqK +uAW +pqK +isa +qZX +vil +bpC +qZX +aQL +pjP +qIf +lfz +bbs +oPH +oPH +oPH +oPH +bbs +bJf +bJf +bJf +bJf +xba +dNt +dNt +dNt +dNt +bbs +krA +krA +krA +krA +bbs +wMI +ekM +oHt +bJC +lbf +cft +rQV +ohj +wwr +cDs +wwr +lbf +bSJ +gGf +qyi +tdf +sSC +wty +vio +fXN +yfm +fXN +fXN +bSJ +xhO +dFL +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(231,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +wTn +mOE +sWp +nUm +moL +taw +mDJ +owg +xUA +ozz +vFv +rob +owg +owg +nwU +owg +owg +ptK +sHI +tof +qhT +wDM +aOQ +fxI +nLJ +aHv +aya +amx +atq +aDr +aFu +xBe +azp +qJf +anV +xBe +sHI +cNC +qhT +jWh +iqH +khE +khE +khE +ovi +iat +eim +jWh +kNq +spd +kNq +kNq +wyb +mIa +oFP +lAm +jei +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +hfO +ikT +aLT +iPS +vAE +iKw +vAE +wMG +tIQ +btc +bwh +uMl +tKY +dII +mLF +mLF +viS +sXw +sXw +vil +bpC +qDq +kbc +bqc +ubQ +bqc +bbs +bdw +bfo +rWL +wLm +nHJ +wLm +wLm +wLm +bSa +xba +bSa +wLm +wLm +wLm +nHJ +wLm +lJu +bEd +bFs +bbs +uPE +ekM +pOW +fzq +oXb +cft +rQV +wdz +wdz +fDJ +mpJ +mpJ +bZU +koI +qFK +pmq +sUj +aNT +vSW +scy +gEo +scy +kPJ +bSJ +gEh +pFr +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(232,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +fTl +oxy +oxy +tIN +oxy +oxy +kiR +owg +owg +uKV +mDJ +bNM +iEr +owg +eNi +eNi +eNi +eNi +eNi +sHI +tof +wCe +wDM +aOH +aJf +aMw +wDM +xsl +aya +atq +aDr +aFv +xBe +xBe +xBe +xBe +xBe +sHI +cNC +xmP +jWh +jWh +jlQ +jlQ +jWh +thV +uWV +uIv +oSx +kNq +oUx +kNq +kNq +fJp +ekz +hqu +jei +qDS +fVe +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +jkN +ikT +aLT +aLT +aLT +aLT +aLT +aLT +sCD +pXl +bxB +uWY +wEd +jvp +oyG +gBc +gBc +gBc +gBc +ngA +koC +koC +xGE +jno +fqw +bqc +lgy +ccb +xYP +bGn +mlm +mlm +mlm +bxn +mlm +mlm +xba +mlm +mlm +bxn +mlm +mlm +mlm +rXk +xYP +jew +laU +uPE +dEL +rzy +uCM +lNw +eFj +iQi +lNw +lNw +lNw +lNw +vej +erh +rqE +qWt +fXN +rEv +rll +bSJ +bSJ +bSJ +bSJ +bSJ +bSJ +gEh +kMR +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(233,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aah +aah +aah +aag +aag +aag +fTl +pWw +hbE +rXT +jGG +jGG +taw +ptK +afX +ptK +ptK +bNM +rtd +owg +eNi +olO +wiG +nWN +eNi +sHI +tof +qhT +wDM +wDM +wDM +wDM +wDM +axI +amA +amx +aDr +aFw +inw +aJh +arq +ufx +alR +sHI +cNC +wCe +jWh +hSk +hSk +cRi +jWh +upR +fCL +uIv +vVw +iSV +jei +oYr +jei +aPO +aPO +aPO +gtQ +wiO +fVe +aag +aag +aag +aah +aah +aah +afm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +hyb +jEM +jEM +jEM +jEM +hyb +jEM +aLT +cjc +cjc +uJU +iDf +cjc +aLT +lDV +fZZ +hEb +dlu +qDq +jOx +bpC +qDq +aQL +nYR +bww +lhs +lgy +bsG +xYP +rWL +dMB +dMB +dMB +dMB +dMB +fsV +xba +fsV +dMB +dMB +dMB +dMB +dMB +lJu +xYP +hLI +laU +gyw +uNQ +gyw +bJC +gkd +cfo +lkM +oXb +oXb +oka +bKM +tEO +bSJ +fXN +fXN +kPJ +fXN +mvy +bSJ +enY +srl +gEh +xhO +xhO +xhO +jay +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(234,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +fTl +prX +oYs +gIB +biC +qlu +taw +bKm +hsr +mDJ +ptK +bNM +iEr +fhH +eNi +ueG +rPt +jyE +eNi +sHI +cNC +qhT +hwC +rcS +amx +swN +alO +axL +amA +amx +aDr +aFy +inw +aJi +azs +atq +alR +sHI +cNC +qhT +mDG +tst +uUe +hSk +bSN +pZK +fCL +uIv +lFA +kNq +jei +kNq +kNq +jei +jei +gYU +oGi +dVR +fVe +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +emA +emA +emA +emA +jEM +ikT +jEM +aLT +qHe +dKX +meY +qHe +dKX +aLT +iMr +wDK +iMr +wuq +ksp +jOx +bpC +ksp +aQL +bqc +wqO +wxD +cau +bCG +cgE +bJe +jmK +xYP +xYP +xYP +xYP +jmK +xba +jmK +xYP +xYP +xYP +xYP +jmK +hcw +cgE +yht +blq +ddL +eZR +uPE +bJC +qwL +kUo +lkM +oaW +yiW +oaW +yiW +kIP +bSJ +vSW +scy +oer +vSW +scy +bSJ +mCE +qid +hCq +tcO +tcO +tcO +tcO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(235,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +fTl +fTl +fTl +fTl +fTl +fTl +fTl +qJx +hsr +mDJ +ptK +bNM +iEr +owg +eNi +iKD +rPt +rPt +eNi +sHI +cNC +qhT +alR +amA +atq +swN +alO +alO +cHc +atq +aDs +alO +alO +aJj +aMD +atq +alR +sHI +cNC +qhT +mDG +tZZ +gLz +hSk +gIJ +ovi +fCL +lYk +bYn +fVe +fVe +fVe +fVe +fVe +fVe +fVe +fVe +fVe +fVe +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +oPF +ikT +jEM +aLT +meY +meY +meY +meY +meY +meY +aQL +aQL +aQL +aQL +aQL +pyl +pDt +aQL +aQL +bqc +ubQ +bqc +lgy +ccN +xYP +rWL +wLm +wLm +wLm +wLm +wLm +bSa +xba +bSa +wLm +wLm +wLm +wLm +wLm +lJu +xYP +wbV +laU +uPE +vuV +uPE +bJC +bJC +vLA +oHc +bJC +bJC +bJC +bJC +bJC +oer +oer +oer +oer +oer +oer +oer +uVp +gEh +pFr +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(236,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +cuC +wdJ +hsr +hsr +ptK +krS +rtd +owg +eNi +eNi +eNi +gIh +eNi +hGb +tof +qhT +alR +amA +atq +sOx +alO +axM +amA +atq +aDr +aFz +inw +amA +ayl +amx +alR +sHI +cNC +qhT +jWh +jmQ +vcu +lIU +jWh +thV +uWV +tiK +bYn +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +wtn +ikT +ikT +ikT +ikT +ikT +ikT +ikT +jEM +ikT +jEM +aQL +qZX +tDZ +qZX +aSE +bpC +qZX +aQL +bqc +ubQ +bqc +lgy +ccb +xYP +bGn +mlm +mlm +mlm +bxn +mlm +mlm +xba +mlm +mlm +bxn +mlm +mlm +mlm +rXk +xYP +jew +laU +uPE +vuV +uPE +bJC +lbf +cfo +wuU +lbf +lbf +lbf +bJC +gEh +cmN +gEh +xhO +dzX +foS +xhO +gEh +gEh +gEh +gEh +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(237,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aah +aah +aah +aah +aah +aah +aah +aag +cuC +evk +hsr +mDJ +ptK +bNM +iEr +owg +eNi +aWb +dyK +vzK +wYY +sHI +tof +qhT +alR +amA +atq +sOx +alO +axN +azq +auy +aDB +aFA +inw +aJl +amx +atq +alR +sHI +cNC +qhT +mDG +snE +sGL +hSk +bSN +pZK +fCL +dbe +bYn +aag +aag +aag +aag +aag +aah +aah +aah +aah +aah +aah +aah +afm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +pGj +uoj +jEM +jEM +jEM +jEM +fBo +jEM +jEM +jEM +jEM +aQL +dlu +dlu +qDq +aSE +vqY +qDq +bTb +bqc +ubQ +bqc +bbs +ccd +ccN +rWL +dMB +uVD +dMB +dMB +dMB +fsV +xba +fsV +dMB +dMB +dMB +uVD +dMB +lJu +huK +jeQ +bbs +uPE +vuV +uPE +xSw +oXb +cfo +wuU +gkd +oXb +oXb +bJC +gEh +xhO +gEh +xhO +gEh +hWH +xhO +gEh +xhO +xhO +rhD +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(238,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rAC +bdH +bdH +bdH +bdH +bdH +aad +cuC +apB +cBd +jRK +ptK +bNM +iEr +owg +eNi +tii +eJX +sAC +wYY +sHI +tof +qhT +alR +amA +amx +apa +alO +axO +azr +aBr +aDC +aFB +alO +aJk +amx +atq +alR +sHI +cNC +qhT +mDG +tZZ +cBj +hSk +gIJ +ovi +fCL +tiK +bYn +aag +aag +aag +aag +ajZ +opJ +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +emA +emA +emA +emA +emA +emA +emA +emA +emA +ikT +jEM +aQL +dlu +qDq +qDq +osA +bcH +cHl +bTb +lhs +bww +lhs +bbs +cdp +cdp +jks +cdp +bbs +uXy +uXy +uXy +uXy +xba +vDd +vDd +vDd +vDd +bbs +fJO +fJO +fJO +fJO +bbs +gyw +uNQ +gyw +xSw +cLc +ejo +niY +gkd +oXb +oXb +bJC +xhO +gEh +gEh +tcO +tcO +ucy +tcO +tcO +tcO +tcO +tcO +tcO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(239,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aad +cuC +ptK +ptK +ptK +ptK +bNM +iEr +owg +eNi +sjj +fzP +sAC +wYY +sHI +cNC +qhT +alR +amA +atq +fhf +alO +axQ +azt +auA +aDD +aFD +inw +xEO +xEO +lnP +alR +sHI +cNC +wCe +jWh +qLs +qLs +cRi +jWh +upR +uWV +uIv +bYn +bYn +bYn +aag +aag +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +qGC +hyb +aQL +ksp +ksp +rou +qDq +dlu +dlu +bTb +bqc +ubQ +bqc +bqc +bqc +bqc +bqc +bqc +dYb +bqc +fpI +bqc +bqc +tGS +uPE +uPE +uuT +uPE +fRL +uPE +uPE +uPE +uPE +uPE +uPE +vuV +uPE +xSw +gkd +oXb +oXb +kIP +qer +kIP +bJC +xhO +wYd +pFr +tcO +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 +"} +(240,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +hzc +hzc +hzc +cuC +dbw +uGQ +bNM +rtd +owg +eNi +fcM +uzE +qsL +nim +noe +pqY +qhT +alR +amA +atq +cSm +alO +elf +amA +atq +aDE +asT +aHw +iWR +iWR +kbx +alR +sHI +cNC +qhT +jWh +jWh +jlQ +jlQ +jWh +lhJ +fCL +uIv +oXJ +kPR +bYn +hzc +hzc +hzc +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +ikT +jEM +aQL +aQL +aQL +aQL +ksp +rou +ksp +aQL +bqc +qas +qUO +qUO +qUO +reu +fLf +reu +reu +reu +kkN +reu +reu +uTP +kEE +kEE +dCM +kEE +kEE +kEE +ulH +kEE +wzJ +wzJ +wzJ +nmH +xui +bJC +kIP +qer +kIP +bJC +bJC +bJC +bJC +gEh +gEh +gEh +tcO +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 +"} +(241,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +yjq +bZc +iHc +sbq +rLk +hsr +bNM +iEr +owg +eNi +xlC +gyO +kTN +eNi +uSk +cNC +qhT +alR +amA +atq +civ +dof +atq +arm +atc +atc +atc +inw +xEO +xEO +aOV +alR +sHI +cNC +qhT +jWh +wFQ +bop +vyI +jnp +thV +fCL +uIv +hSk +vVw +jzD +iHc +bZc +mZF +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +emA +ikT +jEM +jEM +hYf +jEM +oBr +oBr +oBr +oBr +oBr +ovQ +bqc +bqc +bqc +bqc +nci +mww +nci +nci +bqc +rVC +bqc +bqc +tGS +uPE +uPE +tIl +uPE +cJs +cJs +vuV +cJs +uPE +uPE +uPE +uPE +pqw +bJC +bJC +bJC +bJC +bJC +xhO +xhO +xhO +gEh +xhO +xfq +tcO +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 +"} +(242,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +yjq +jgw +wbJ +sbq +rLk +hsr +bNM +iEr +fhH +eNi +oNb +iFC +qAA +eNi +sHI +tof +qhT +alR +arK +atc +civ +kwd +atq +atq +amA +aDH +aFI +alO +aJq +aMG +aOW +alR +sHI +cNC +qhT +jWh +bXy +bop +vyI +vyI +vyI +fCL +uIv +hSk +vVw +jzD +wLi +jgw +mZF +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +emA +kAv +jEM +ikT +ikT +jEM +jEM +gCu +ikT +ikT +oBr +oBr +qPn +oBr +oBr +jxX +knl +pum +jAj +kKY +kKY +oJk +lNR +lNR +oJk +lNR +lNR +oJk +cNm +oGh +far +vDo +nnr +rKt +ljv +ljv +sUi +ljv +ljv +xhO +xhO +xhO +xhO +xhO +xhO +xhO +xhO +xhO +srl +tcO +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 +"} +(243,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +hzc +hzc +hzc +cuC +vvy +uGQ +bNM +rtd +owg +eNi +eNi +eNi +eNi +eNi +sHI +tof +qhT +alO +alO +alO +alO +alO +azi +azi +ets +kvh +rka +alO +alO +alO +alO +alO +sHI +cNC +qhT +jWh +wFQ +bop +vyI +wKc +thV +uWV +uIv +oXJ +uGc +bYn +hzc +hzc +hzc +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +emA +qFS +pPG +jEM +jEM +jEM +jEM +gCu +jEM +jEM +tXn +jEM +jEM +jEM +oBr +oBr +sqg +rPQ +sqg +oJk +oJk +oJk +oRW +mxT +pHc +eVE +jMy +oJk +oJk +oJk +sqg +mgu +sqg +ljv +ljv +xhO +gEh +xhO +xhO +gEh +gEh +gEh +xhO +xhO +xhO +xhO +gEh +aEr +keO +tcO +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 +"} +(244,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aad +aag +aag +cuC +cuC +cuC +bNM +iEr +owg +owg +dWX +owg +owg +ptK +knU +oOZ +hdP +aqq +aPa +eky +eky +alO +aqY +aqY +alO +aqY +aqY +alO +eky +eky +aPa +aqq +knU +oOZ +doX +jWh +xXa +xXa +xXa +xXa +pZK +fCL +uTZ +bYn +bYn +bYn +aag +aag +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +emA +twp +iyE +ecb +ikT +ikT +ikT +ctp +ecb +jEM +jEM +jEM +jEM +ikT +ikT +oBr +fcS +gdJ +oyR +oJk +nHL +wfx +ijf +osI +qXk +fie +tRs +pqP +fqC +oJk +ppn +nAY +cjt +ljv +ceY +gIm +gEh +gEh +gEh +xhO +wra +xhO +gEh +xhO +gEh +gEh +sOD +eMx +xgr +tcO +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 +"} +(245,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aae +aah +aah +aah +aag +uMc +vFv +wOt +odl +jhx +keR +jhx +keR +dwI +tzF +eIY +vER +hal +uYg +nau +uYg +uYg +bXf +aDO +aDO +aDO +gQO +uYg +uYg +nau +uYg +hal +sVv +eIY +tzF +mPh +soP +tWi +soP +pDr +tWi +tpd +eim +pql +aag +aah +aah +aah +afm +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +emA +emA +emA +emA +emA +emA +emA +vgw +sqg +sqg +sqg +mpP +sqg +oBr +qGC +oBr +fcS +gdJ +oyR +oJk +uZF +xoj +xoj +osI +qXk +fie +pUj +xoj +sfV +oJk +pkA +nAY +cjt +ljv +gEh +ljv +sqg +mpP +aep +aep +aep +dKL +tcO +tcO +tcO +tcO +tcO +tcO +tcO +tcO +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 +"} +(246,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aad +uMc +bNM +rmf +uZH +bFt +kPG +kPG +cVw +ptK +eJg +bkb +pvi +aqq +eky +aNl +eky +eky +nCT +vsh +vsh +vsh +ydY +eky +eky +aNl +eky +aqq +eJg +lqL +pvi +jWh +tim +uWV +ttd +nLk +rCD +eYR +uIv +pql +ajZ +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +vgw +wct +hqc +sqg +rwB +lKM +sqg +nSq +oBr +sKf +gdJ +cjt +pRZ +ish +ish +ish +kzC +jUl +wud +ish +ish +ish +pRZ +fcS +nAY +jOE +ljv +mPc +sqg +qEL +vmE +ggQ +afk +afk +dKL +aag +aag +ajZ +aaa +aaa +aaa +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 +"} +(247,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +aac +aag +cuC +blJ +pfc +ptK +ptK +ucp +cIW +ptK +ptK +xga +kgV +xga +aHe +jlT +exi +eky +eky +eAC +aBu +aBu +aBu +eAC +eky +eky +ins +wRP +aHe +eZm +eZm +eZm +jWh +jWh +sWC +jWh +jWh +jWh +jAJ +lAu +bYn +aag +ajY +aaa +aaa +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 +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aag +aag +vgw +wct +hqc +sqg +eKy +wQA +sqg +jEM +oBr +uYn +jaM +oXM +kvf +rDy +uVc +bxN +cYN +nhr +vuD +skL +dTr +gfG +mkP +muQ +ojh +nxx +ljv +xhO +sqg +gEC +skC +aWZ +bLx +bMJ +dKL +aag +aag +ajZ +aaa +aaa +aaa +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 +"} +(248,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +cuC +cuC +cuC +bNM +ofK +ptK +uXL +gPc +trB +exy +ptK +fLl +fLl +fLl +eky +eky +aNl +eky +uNV +aHe +aDQ +aDQ +aDQ +aHe +uNV +eky +aNl +eky +rqj +eZm +jYm +aZI +jWh +duz +hXG +htG +doU +jWh +lbB +uIv +bYn +bYn +bYn +aaa +aaa +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 +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aae +aah +aah +vgw +utn +hqc +hqc +eqL +vxu +sqg +mpP +sqg +qWQ +gdJ +cjt +pRZ +wuB +wuB +qAs +dIH +nKP +uTV +sHx +vgv +wuB +pRZ +fcS +nAY +cjt +sqg +mpP +sqg +efC +yaF +aep +aep +aep +dKL +aah +aah +afm +aaa +aaa +aaa +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 +"} +(249,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +cuC +uiG +tfb +rFy +ofK +ptK +uXL +eet +fcP +pDh +ptK +aqZ +aqZ +ptQ +aMT +aMT +dPm +qeF +aHe +aHe +aDX +yge +aEm +aHe +aHe +okg +dPm +aMT +aMT +hbp +mwP +mwP +jWh +axR +mIP +tcZ +fWi +jWh +lbB +cKL +xXa +xoO +bYn +aaa +aaa +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 +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vgw +noP +hqc +hqc +xNg +spH +sqg +aFe +sqg +scE +gdJ +acy +oJk +jRc +xoj +eKQ +osI +xrI +fie +fsR +lkV +quS +oJk +bcM +nAY +mFP +sqg +pCq +sqg +gEC +unx +ggQ +bLy +bLy +dKL +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(250,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +cuC +bNM +rmf +luY +ncp +ptK +cQg +wxj +lht +rYv +ptK +haO +pKB +fLl +svf +arV +wZX +eky +aDQ +ayi +eky +aBx +eky +jlX +aDQ +eky +wZX +arV +vUh +eZm +xUy +mwP +jWh +vpv +pgw +rmE +fWi +jWh +xPZ +pcv +eYR +uIv +bYn +aaa +aaa +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 +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vgw +gOC +nou +nou +dQA +sKM +uuD +eYD +uuD +bSH +gLD +cjt +oJk +oJk +lwp +xoj +osI +rYh +fie +xoj +ehc +oJk +oJk +gNO +vTT +heS +uPP +hlH +uPP +wVA +hJg +aWZ +bLz +bMK +dKL +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(251,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +cuC +aeM +ofK +ptK +ptK +ptK +ptK +ptK +afX +ptK +ptK +haO +fLl +fLl +lDn +arV +wZX +eky +aDQ +pyy +eky +eky +eky +dLc +aDQ +eky +wZX +arV +wkA +eZm +eZm +mwP +jWh +jWh +kLc +jWh +jWh +jWh +jWh +jWh +lbB +oCf +bYn +aaa +aaa +bdH +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 +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dKL +aep +aep +aep +ikv +hqc +vZf +ykI +vZf +aEo +gdJ +trh +hgo +oJk +sVT +xoj +osI +rYh +fie +xoj +bmp +oJk +haD +jTB +nAY +iUm +vZf +bYF +vZf +fiQ +pgN +aep +aep +aep +dKL +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(252,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +uMc +bNM +ofK +fLl +uxl +haO +ebf +haO +aqZ +tot +haO +qqS +fLl +xrq +vVu +arV +wZX +eky +aHe +jMQ +eky +eky +eky +dEn +aHe +eky +wZX +arV +oIt +xrq +eZm +qHG +mwP +xQW +vJR +mwP +hkz +ckj +oaw +eZm +lbB +uIv +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dKL +afk +aWo +aWZ +iyF +vrR +sqg +mpP +sqg +dYC +gdJ +elx +cjt +pRZ +xoj +xoj +osI +xrI +fie +xoj +xoj +pRZ +fcS +hMG +qQy +erF +sqg +mpP +sqg +fLu +hEw +aWZ +bLA +afk +dKL +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(253,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +uMc +bNM +ofK +fLl +uxl +haO +uLG +haO +aqZ +pbo +haO +xLn +fLl +vlk +mKy +aMT +svl +pzJ +qDt +uYg +vsh +oPf +vsh +uYg +qDt +pzJ +sQO +aMT +wNS +vlk +eZm +oHg +uiK +mwP +vJR +mwP +jrB +eoK +xTG +eZm +lbB +uIv +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dKL +aVo +aWp +aWZ +qAB +gEC +sqg +aIh +eTb +kkW +iwf +uFg +rEm +rnF +oFm +oFm +fVo +jUF +nxb +oFm +oFm +glH +vXo +gWu +xMl +lft +eTb +aIh +sqg +siN +cjt +ggQ +afk +bML +dKL +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(254,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +uMc +bNM +rtd +ptQ +aqZ +aqZ +aqZ +aqZ +aqZ +leM +haO +iYm +fLl +fLl +wRk +eky +wZX +vUh +aHe +oxU +bsy +oir +gzw +shh +aHe +svf +wZX +eky +wuk +eZm +eZm +bjt +eIN +mwP +ksw +ksw +ksw +ksw +ksw +hbp +uWV +uIv +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dKL +afk +afk +ggQ +pYS +ivS +sqg +ppM +eTb +hbs +xJV +elx +jnI +oJk +xef +dPQ +ams +eni +nri +gMd +toO +oJk +nYn +elx +mDL +fSF +eTb +ppM +sqg +lvh +iks +aWZ +bLC +afk +dKL +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(255,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +cuC +blJ +pfc +fLl +fLl +fLl +fLl +rht +aqZ +aqZ +aqZ +aqZ +aqZ +ptQ +qYG +atM +bGc +atK +aHe +aHe +aHe +aHe +aHe +aHe +aHe +atM +bGc +atK +qYG +hbp +ksw +ksw +rHB +ksw +vJR +rPq +eZm +eZm +eZm +eZm +jAJ +lAu +bYn +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dKL +dKL +aep +aep +mkL +gEC +sqg +ppM +eTb +hsy +hsy +baJ +kbw +hsy +ldc +lNR +lNR +lNR +lNR +lNR +ldc +hsy +foC +kph +hsy +hsy +eTb +eUe +sqg +wWl +trh +aep +aep +dKL +dKL +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(256,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +cuC +bNM +tgK +tfb +wuT +lMx +gJF +gJF +gJF +gJF +gJF +gJF +gJF +gJF +aPw +avu +mhG +cFn +cYu +aHe +fdX +wcR +xJh +aHe +qYu +dxK +dPC +aMU +aPw +wxy +wxy +wxy +wxy +wxy +wxy +wxy +wxy +jFY +qKY +jHL +wOK +uIv +bYn +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +vgw +usZ +wpS +fZA +fEe +sqg +ppM +ppM +hsy +shL +uXk +mlF +hsy +ckZ +hmv +hmv +dTS +hmv +hmv +ckZ +hsy +tos +uXk +tkn +hsy +aIh +ppM +sqg +fEe +nqW +kfI +vFH +vgw +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(257,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +cuC +riJ +kHY +uhM +kdv +lkm +cuC +aag +aag +aag +aag +aag +aag +aag +aPw +aqJ +aBu +odu +aMT +aEg +aDO +aDO +aDO +aEg +aMT +odV +aBu +aqp +aPw +aag +aag +aag +aag +aag +aag +aag +bYn +dRs +uAl +rDb +qjV +rID +bYn +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +vgw +ckW +vgw +vgw +vgw +vgw +aIh +aIh +hsy +wed +uXk +mlF +jWb +mnP +aPU +aPU +aPU +aPU +aPU +uFv +jWb +tos +uXk +wed +hsy +qBS +lib +vgw +vgw +vgw +vgw +ckW +vgw +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(258,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +cuC +cuC +umy +iKZ +pnL +cuC +cuC +mNX +mNX +mNX +mNX +mNX +mNX +cus +aPw +aPw +atM +bGc +atK +avu +aMT +arV +aMT +aMU +atM +bGc +atK +aPw +aPw +mNX +mNX +mNX +mNX +mNX +mNX +qOk +bYn +bYn +cWE +kHS +rID +bYn +bYn +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aae +aah +aag +aag +aag +nic +tmQ +ppM +hsy +txS +bVN +oGJ +iYv +hfy +mVr +mZL +mZL +mZL +gSa +xiQ +rMe +uqh +iAE +sct +hsy +iWa +fZR +nic +aag +aag +aag +aah +afm +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(259,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +cuC +mkH +rtd +fcP +cuC +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +vgD +mhG +had +eAL +pzJ +oPf +pzJ +had +eAL +dPC +ihX +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +bYn +kcA +uWV +uIv +bYn +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +aIh +aIh +hsy +fCT +uXk +rae +jIV +pzM +mtZ +hmv +hmv +hmv +fQn +pzM +nac +xNf +uXk +slv +hsy +aIh +aIh +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(260,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +cuC +vRu +ngU +ssU +cuC +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +aqJ +aBA +aqp +avu +eky +dPm +eky +aMU +aqJ +aBA +aqp +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +bYn +thV +uWV +uIv +bYn +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +ppM +ppM +hsy +igs +nCn +oGJ +knq +uLL +vaZ +kYL +hmv +sCV +rjO +iyY +kGA +uqh +pJr +slv +hsy +aIh +aIh +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(261,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +uMc +gbs +iEr +hFw +uMc +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +aHe +aHe +aHe +mtD +eky +wZX +eky +nKq +aHe +aHe +aHe +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +pql +thV +fCL +uIv +pql +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +aIh +ppM +hsy +hsy +wTB +mlF +uXk +xDd +gSa +mtZ +hmv +fQn +wSV +jRO +uXk +tos +slv +hsy +hsy +ppM +eUe +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(262,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +uMc +nrO +iEr +fcP +uMc +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +aHe +aHe +aHe +avu +eky +wZX +eky +aMU +aHe +aHe +aHe +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +pql +thV +fCL +uIv +pql +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +aIh +aIh +aIh +hsy +ygP +mlF +hsy +hcX +fQn +mtZ +hmv +fQn +mtZ +hmv +hsy +beL +ygP +hsy +cWb +aIh +aIh +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(263,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +uMc +aVC +iEr +fcP +uMc +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +jbq +kRg +uRs +aDO +qqu +eky +aNl +eky +dFk +aDO +nPY +kRg +jbq +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +pql +thV +fCL +uIv +pql +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +ppM +ppM +ppM +hsy +ylh +opH +hsy +pvI +fQn +qoR +aPU +rjO +mtZ +njS +hsy +iEw +ylh +hsy +dDT +ppM +dDT +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(264,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aad +cuC +mJx +rtd +odb +cuC +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +jbq +hBL +dID +eky +eky +nJu +aNl +eky +eky +eky +etn +hBL +jbq +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +bYn +thV +uWV +oCf +bYn +ajZ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +nic +nic +wsw +aIh +hsy +ylh +mlF +hsy +hmv +hPo +uLL +pzM +dQH +wFB +hmv +hsy +tos +ylh +hsy +qBS +piJ +nic +nic +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(265,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +cuC +cuC +dqg +rtd +fcP +cuC +cOK +xVk +xVk +xVk +xVk +xVk +xVk +xVk +eJQ +aPw +aHe +mRQ +eky +eky +eky +aNl +eky +eky +eky +biJ +aHe +aPw +eJQ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +wZv +bYn +thV +uWV +uIv +bYn +bYn +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +qBS +lib +hsy +hsy +suJ +hsy +hsy +gLG +vPU +bhI +bed +hQw +hsy +hsy +wdv +hsy +hsy +yjE +ppM +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(266,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +iKc +uiG +cMN +trB +nVX +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +ohH +atM +aDO +atK +eky +eky +aNl +eky +eky +atM +aDO +atK +sjr +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +xBn +vME +hSt +xoO +rjG +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +vsi +hsy +uiC +sIr +jCn +kkk +kjO +pAm +gzq +pAm +eAI +tdv +rlc +hfb +hUk +hsy +ppM +fZR +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(267,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +cIG +vqD +iEr +fcP +blJ +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +aPz +avu +arV +aMU +ssX +vsh +iPD +vsh +fCp +avu +arV +aMU +aPz +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +gIJ +thV +fCL +lne +wEI +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +ppM +ppM +hsy +thc +sIr +pAm +pAm +pAm +pAm +gzq +pAm +pAm +pAm +pAm +sIr +fZl +hsy +mxV +aIh +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(268,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +dfg +rAP +vqK +lht +blJ +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +aPz +aqJ +aBu +aqp +nkn +lyw +iZg +lyw +nkn +aqJ +aBu +aqp +aPz +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +gIJ +tjj +ofH +gms +ydh +pql +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +aIh +hsy +tIe +uAK +bVv +bVv +xTu +gzq +gzq +gzq +ern +bVv +bVv +nJa +jPd +hsy +ppM +eeC +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(269,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +cuC +ptK +bSD +iEr +xKM +cuC +uiR +xVk +xVk +xVk +xVk +xVk +xVk +xVk +oee +aPw +sYD +aMT +aMT +uqI +aHe +aHe +aHe +rdh +aMT +aMT +bZR +aPw +oee +xVk +xVk +xVk +xVk +xVk +xVk +xVk +kMK +bYn +gEv +fCL +lol +jWh +bYn +aaa +bdH +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 +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +ppM +ppM +hsy +dPH +sov +pAm +pAm +nAd +pAm +pAm +pAm +pAm +pAm +pAm +fZl +oex +hsy +aIh +aIh +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(270,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +cuC +ptK +new +iEr +paI +cuC +cOK +xVk +xVk +xVk +xVk +xVk +xVk +xVk +eJQ +aPw +ebn +aMT +aMT +eky +aHe +aHe +aHe +eky +aMT +aMT +oOO +aPw +eJQ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +wZv +bYn +vVw +fCL +tNP +jWh +bYn +aaa +bdH +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 +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +aIh +hsy +rBv +sov +pAm +pAm +hsy +nDa +nDa +nDa +hsy +gDH +pAm +fZl +snt +hsy +ppM +ppM +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(271,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +jMG +uiG +iUW +trB +ozN +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +gZP +atM +aDO +atK +eky +fRC +lFe +fRC +eky +atM +aDO +atK +aPx +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +diz +vME +hSt +xoO +adC +pql +bdH +bdH +bdH +bdH +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 +aKQ +aaa +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +ppM +ppM +hsy +fqW +qYq +mQn +pAm +hsy +kiG +aSk +pUv +hsy +pAm +mQn +wQD +fqW +hsy +aIh +aIh +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(272,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +msP +ugJ +kNk +cXY +blJ +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +aPz +avu +arV +aMU +arV +arV +arV +arV +arV +avu +arV +aMU +aPz +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +gIJ +thV +fCL +lne +wWq +pql +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aaa +aaa +aKQ +bdH +bdH +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +ppM +hsy +hsy +hsy +hsy +hNP +hsy +hsy +hsy +hsy +hsy +hNP +hsy +hsy +hsy +hsy +ppM +ppM +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(273,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +uMc +spK +nlW +uZH +lht +blJ +jcP +xVk +xVk +xVk +xVk +xVk +xVk +xVk +etf +aPz +aqJ +aBu +aqp +eky +eky +eky +eky +eky +aqJ +aBu +aqp +aPz +xjz +xVk +xVk +xVk +xVk +xVk +xVk +xVk +dbq +gIJ +tjj +jRC +gms +qeK +pql +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +bdH +bdH +bdH +bdH +bdH +bdH +aKQ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aak +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +ppM +csd +dDJ +hsy +haz +fQn +pzM +qra +tqE +qra +pzM +mtZ +haz +hsy +dDJ +rXH +aIh +aIh +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(274,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +bdH +aaa +aaa +cuC +cuC +jPq +xgm +aqK +cuC +uiR +xVk +xVk +xVk +xVk +xVk +xVk +xVk +oee +aPw +aHe +iTe +eky +eky +atg +aBE +ouB +eky +eky +qPX +aHe +aPw +oee +xVk +xVk +xVk +xVk +xVk +xVk +xVk +kMK +bYn +hTF +rTJ +tAq +bYn +bYn +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aKQ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aak +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +aIh +aIh +aIh +aIh +hsy +haz +pLt +mZL +mZL +mZL +mZL +mZL +lOX +haz +hsy +fpi +aIh +aIh +aIh +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(275,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cuC +uMc +uMc +uMc +cuC +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +jbq +xrq +dID +eky +eky +esT +nYE +orH +eky +eky +etn +xrq +jbq +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +bYn +pql +pql +pql +bYn +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +iBn +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +nic +nic +mem +piJ +piJ +hsy +mkI +aPS +gsM +ukP +eCt +ukP +nop +aPS +ddf +hsy +atS +ppM +fZR +nic +nic +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(276,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +jbq +vlk +dID +eky +eky +bAe +aBG +sGh +eky +eky +etn +vlk +jbq +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +aag +nic +aIh +ppM +sER +hsy +hsy +hsy +hsy +hsy +hsy +hsy +hsy +hsy +hsy +hsy +aIh +aIh +aIh +nic +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(277,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +uYd +xnz +dqj +eky +xaS +ejt +mPf +eky +gUV +neG +uYd +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +aag +nic +aIh +ppM +aIh +ppM +puT +aIh +xrg +ppM +ppM +ppM +xrg +aIh +erE +ppM +ppM +ppM +aIh +nic +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(278,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aad +aPw +jbq +aPw +vgD +eky +atg +aBE +ouB +eky +ihX +aPw +jbq +aPw +ajZ +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +aag +gFP +gFP +qjZ +qjZ +qjZ +qjZ +dXI +qjZ +qjZ +qjZ +qjZ +qjZ +dXI +qjZ +qjZ +qjZ +qjZ +gFP +gFP +aag +aag +aag +aag +ajZ +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(279,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aae +aah +aag +jbq +iaR +aBu +aBu +aBu +aBu +aBu +iub +jbq +aag +aah +afm +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +daz +vhe +qQS +cqm +gTH +qit +ebN +qQS +gwn +pfT +vCH +dyp +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aae +aah +aah +aah +aah +gFP +gFP +lMb +lMb +fLv +cLq +vON +sgs +ioP +vAI +kXm +eSk +vON +cLq +oLN +lMb +lMb +gFP +gFP +aah +aah +aah +aah +afm +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(280,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aad +aPw +aPw +jbq +jbq +jbq +jbq +jbq +aPw +aPw +ajZ +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +sbJ +sbJ +sbJ +daz +rna +clw +qQS +sKY +qQS +bIp +fKe +dDp +bFg +frM +lcg +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gFP +vVI +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +fXZ +gsi +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(281,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aae +aah +aah +aah +aah +aah +aah +aah +aah +aah +afm +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +lmz +lmz +lmz +lmz +lmz +daz +daz +daz +daz +daz +tte +hvw +auf +pmV +eGr +xDC +dIn +rby +bIp +euN +ujn +sEK +etM +lcg +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gFP +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(282,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +lmz +daz +daz +hRW +asZ +vXh +daz +daz +kfU +daz +ebN +ebN +lnS +uVv +flf +ebN +rOz +kBy +kBy +nNA +fPB +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gFP +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(283,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +daz +daz +eKJ +yaZ +dJC +hZj +clw +daz +daz +daz +sGZ +ebN +ebN +roH +ebN +daz +daz +daz +wnh +wnh +daz +daz +daz +lmz +lmz +lmz +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +gFP +riT +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +vFn +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(284,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xVk +xVk +xVk +xVk +xVk +xVk +xVk +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +daz +jYH +ubA +cck +wyQ +fmv +ubA +gMN +mRn +dJO +vMt +dkz +aGk +ktQ +teZ +wkM +ege +wJI +wrm +wrm +tOa +tOa +daz +lmz +lmz +lmz +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +gFP +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(285,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +daz +cwS +ffE +vHa +nDy +ffE +ffE +ffE +jqP +cLo +clw +viB +dIi +qLS +erN +wkM +jvB +jtj +swx +swx +qKZ +gjv +daz +lmz +lmz +lmz +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +gFP +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(286,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +daz +oRV +ydI +mdW +ios +awu +ydI +aKs +fMt +mEs +gbm +oBD +lFj +vyE +mTr +wkM +qNc +aki +iIo +iIo +cbA +aXZ +daz +lmz +lmz +lmz +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +gFP +vVI +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +lMb +gsi +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(287,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +daz +daz +eKJ +yaZ +dJC +hZj +fQD +daz +daz +daz +tHu +ebN +ebN +gXs +ebN +daz +daz +daz +wnh +wnh +daz +daz +daz +lmz +lmz +lmz +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +gFP +lMb +wgf +lMb +qbD +lMb +wgf +lMb +qbD +lMb +wgf +lMb +qbD +lMb +wgf +lMb +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(288,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +lmz +daz +daz +ocB +nJH +rnH +daz +daz +sTV +daz +ebN +ebN +gbg +uVv +xwU +ebN +qQS +kBy +kBy +gfu +kBy +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +gFP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(289,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +lmz +lmz +lmz +lmz +lmz +daz +daz +daz +daz +daz +tte +hvw +auf +hTl +jrH +xDC +yaQ +vLz +mFN +kSy +bFg +dDp +nYg +lcg +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(290,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +bdH +lmz +lmz +lmz +daz +daz +daz +daz +daz +sbJ +sbJ +sbJ +daz +rna +qRX +qQS +aCd +qQS +mFN +igr +sEK +ujn +mlb +lcg +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(291,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +bdH +lmz +lmz +lmz +daz +hWM +hWM +hWM +ebN +daz +ocL +qpY +daz +drU +itg +gba +kRQ +our +ebN +cxc +kBy +kBy +dzt +gyN +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(292,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +lmz +lmz +lmz +daz +hWM +fVx +hWM +ebN +tId +ltc +ltc +daz +ebN +fCI +ebN +daz +daz +daz +daz +daz +daz +daz +daz +daz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(293,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +bdH +bdH +bdH +bdH +izf +hWM +qQS +hWM +ebN +tId +fVx +qQS +ebN +naj +itg +qQS +daz +daz +daz +daz +daz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(294,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +vVk +cJI +fVx +hWM +ebN +tId +qQS +mIJ +wiu +xDC +yaQ +jtj +oZx +irr +irr +xsi +daz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(295,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +bdH +bdH +bdH +fhR +nKO +tmV +qQS +gDh +qQS +qQS +bMg +flL +qQS +qQS +pUg +sII +cFg +pkS +xsi +daz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aak +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +"} +(296,1,1) = {" +aaa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +bdH +bdH +bdH +bdH +npq +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +daz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +bdH +bdH +bdH +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa +aaa +"} +(297,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aKQ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(298,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aKQ +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(299,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aab +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +jRz +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aak +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(300,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aKQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} From 164319aad10748ea3d290262fcbfbd2b8edff369 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Mon, 11 Nov 2024 14:16:04 +0000 Subject: [PATCH 08/13] mapping --- maps/map_files/USS_Almayer/USS_Almayer.dmm | 86 ++++++++++------------ 1 file changed, 40 insertions(+), 46 deletions(-) diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index dce44a720577..920caa1cd83c 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -16272,14 +16272,14 @@ /area/almayer/hallways/upper/aft_hallway) "cNH" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/containment{ - id = "Containment Cell 4"; - name = "\improper Containment Cell 4" + id = "CL_Containment"; + name = "\improper Containment Cell" }, /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ dir = 1; - id = "Containment Cell 4"; + id = "CL_Containment"; locked = 1; - name = "\improper Containment Cell 4" + name = "\improper Containment Cell" }, /turf/open/floor/almayer/test_floor4, /area/almayer/medical/containment/cell/cl) @@ -16767,7 +16767,7 @@ "cXF" = ( /obj/structure/machinery/flasher{ alpha = 1; - id = "Containment Cell 4"; + id = "CL_Containment"; layer = 2.1; name = "Mounted Flash"; pixel_x = -15; @@ -17020,9 +17020,7 @@ /turf/open/floor/almayer/red/north, /area/almayer/lifeboat_pumps/north2) "dbM" = ( -/obj/structure/machinery/door/poddoor/almayer/blended/liaison{ - id = "RoomDivider" - }, +/obj/structure/machinery/door/poddoor/almayer/blended/liaison, /turf/open/floor/almayer/plate, /area/almayer/command/corporateliaison) "dbX" = ( @@ -22351,8 +22349,10 @@ /turf/open/floor/almayer/test_floor4, /area/almayer/medical/upper_medical) "fnH" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 1; + vent_tag = "Office"; + network_id = "CL_Security" }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) @@ -23646,6 +23646,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/machinery/flasher{ + alpha = 0; + id = "CL_Security"; + layer = 2.1; + name = "Ceiling Flash"; + pixel_x = -15; + pixel_y = 30; + mouse_opacity = 0 + }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) "fRg" = ( @@ -25065,9 +25074,6 @@ /turf/open/floor/plating, /area/almayer/maint/lower/constr) "gyI" = ( -/obj/structure/machinery/computer/skills{ - req_one_access_txt = "200" - }, /obj/structure/surface/table/woodentable/fancy, /obj/item/tool/pen/clicky{ pixel_x = 14; @@ -25078,6 +25084,7 @@ pixel_x = 14; pixel_y = 6 }, +/obj/structure/machinery/computer/wy_intranet/liaison, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) "gyN" = ( @@ -34303,14 +34310,6 @@ pixel_x = 2; pixel_y = 9 }, -/obj/structure/machinery/door_control/cl/office/window{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/structure/machinery/door_control/cl/office/door{ - pixel_x = 6; - pixel_y = -3 - }, /obj/item/spacecash/c500{ pixel_x = -10; pixel_y = 8 @@ -40123,9 +40122,6 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) "mLe" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, /obj/structure/sign/safety/bathunisex{ pixel_x = 8; pixel_y = -32 @@ -40133,6 +40129,11 @@ /obj/structure/machinery/door_control/cl/quarter/backdoor{ pixel_x = 25 }, +/obj/structure/pipes/vents/pump/no_boom/gas{ + dir = 8; + vent_tag = "Quarters"; + network_id = "CL_Security" + }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) "mLg" = ( @@ -41060,9 +41061,23 @@ /obj/structure/transmitter/rotary{ name = "CL Office Telephone"; phone_category = "Offices"; - phone_id = "CL Office" + phone_id = "CL Office"; + pixel_x = 5; + pixel_y = 5 }, /obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = 3; + pixel_x = -5 + }, +/obj/structure/machinery/door_control/cl/office/window{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/structure/machinery/door_control/cl/office/evac{ + pixel_x = -5; + pixel_y = -3 + }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) "neZ" = ( @@ -42389,28 +42404,15 @@ /area/almayer/maint/lower/s_bow) "nFc" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Containment Cell 4"; - name = "Control Panel"; - pixel_x = -17; - req_access_txt = "200"; - pixel_y = 9 - }, /obj/item/storage/photo_album, /obj/structure/machinery/computer/cameras/containment/hidden{ dir = 4; pixel_x = -17; - pixel_y = -5; plane = -5 }, /obj/item/device/camera_film{ pixel_x = -3 }, -/obj/structure/machinery/door_control/cl/office/divider{ - pixel_x = 7; - pixel_y = -7 - }, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) "nFm" = ( @@ -51369,14 +51371,6 @@ pixel_y = 3 }, /obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/door_control/cl/office/evac{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/structure/machinery/door_control/cl/quarter/windows{ - pixel_x = -5; - pixel_y = -3 - }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) "rlZ" = ( From 3b22ecb3beb30d7993b7b170e170783d71ec3ec5 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Thu, 14 Nov 2024 00:08:44 +0000 Subject: [PATCH 09/13] vent fix --- maps/map_files/USS_Almayer/USS_Almayer.dmm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 920caa1cd83c..9def68e1a676 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -12137,7 +12137,7 @@ /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) "bMg" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ dir = 8; vent_tag = "Synth Bay" }, @@ -22241,7 +22241,7 @@ }, /area/almayer/medical/containment/cell/cl) "flf" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ dir = 1; vent_tag = "Records" }, @@ -42330,7 +42330,7 @@ /obj/structure/bed/chair/comfy/ares{ dir = 1 }, -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ vent_tag = "Core Chamber" }, /turf/open/floor/almayer/no_build/plating, @@ -44675,7 +44675,7 @@ /turf/open/floor/almayer/silver/west, /area/almayer/command/cichallway) "oBD" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ dir = 8; vent_tag = "Access Hall" }, @@ -46013,7 +46013,7 @@ /area/almayer/shipboard/brig/cryo) "pax" = ( /obj/effect/step_trigger/clone_cleaner, -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ dir = 8; vent_tag = "Reception" }, @@ -67094,7 +67094,7 @@ /turf/open/floor/almayer/plate, /area/almayer/living/briefing) "xwU" = ( -/obj/structure/pipes/vents/pump/no_boom/gas{ +/obj/structure/pipes/vents/pump/no_boom/gas/ares{ dir = 1; vent_tag = "Comms" }, From 03a505d3e93bfe88978e6ec6d6f7320271c94fdd Mon Sep 17 00:00:00 2001 From: forest2001 <41653574+realforest2001@users.noreply.github.com> Date: Fri, 15 Nov 2024 23:51:56 +0000 Subject: [PATCH 10/13] Update tgui/packages/tgui/interfaces/WYComputer.jsx --- tgui/packages/tgui/interfaces/WYComputer.jsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tgui/packages/tgui/interfaces/WYComputer.jsx b/tgui/packages/tgui/interfaces/WYComputer.jsx index 2e0925afb38f..421c59e18919 100644 --- a/tgui/packages/tgui/interfaces/WYComputer.jsx +++ b/tgui/packages/tgui/interfaces/WYComputer.jsx @@ -17,13 +17,9 @@ export const WYComputer = (props) => { const { current_menu, last_page, access_text, logged_in } = data; const PageComponent = PAGES[current_menu](); - let themecolor = 'crtyellow'; - if (current_menu === 'emergency') { - themecolor = 'crtred'; - } return ( - + {!!current_menu === 'Login' && (
From 1e7ab382097d762cf0c982c9264144058c031992 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 16 Nov 2024 02:14:29 +0000 Subject: [PATCH 11/13] format --- tgui/packages/tgui/interfaces/WYComputer.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tgui/packages/tgui/interfaces/WYComputer.jsx b/tgui/packages/tgui/interfaces/WYComputer.jsx index 421c59e18919..8c8d4de4d4f1 100644 --- a/tgui/packages/tgui/interfaces/WYComputer.jsx +++ b/tgui/packages/tgui/interfaces/WYComputer.jsx @@ -17,9 +17,8 @@ export const WYComputer = (props) => { const { current_menu, last_page, access_text, logged_in } = data; const PageComponent = PAGES[current_menu](); - return ( - + {!!current_menu === 'Login' && (
From df2219bffbb1229d68c938ac247dfd667f69b3a7 Mon Sep 17 00:00:00 2001 From: forest2001 Date: Sat, 16 Nov 2024 02:15:30 +0000 Subject: [PATCH 12/13] confirm buttons --- tgui/packages/tgui/interfaces/WYComputer.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tgui/packages/tgui/interfaces/WYComputer.jsx b/tgui/packages/tgui/interfaces/WYComputer.jsx index 8c8d4de4d4f1..970908643ca9 100644 --- a/tgui/packages/tgui/interfaces/WYComputer.jsx +++ b/tgui/packages/tgui/interfaces/WYComputer.jsx @@ -249,7 +249,7 @@ const MainMenu = (props) => { Room Divider )} - - + Date: Sun, 24 Nov 2024 18:23:27 +0000 Subject: [PATCH 13/13] tags --- maps/map_files/USS_Almayer/USS_Almayer.dmm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index ec97be1b608d..352e9cc91c85 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -21494,7 +21494,7 @@ }, /obj/structure/pipes/vents/pump/no_boom/gas{ dir = 8; - vent_tag = "Quarters"; + vent_tag = "WY Liaison Quarters"; network_id = "CL_Security" }, /turf/open/floor/wood/ship, @@ -51353,7 +51353,7 @@ "rmd" = ( /obj/structure/pipes/vents/pump/no_boom/gas{ dir = 1; - vent_tag = "Office"; + vent_tag = "WY Liaison Office"; network_id = "CL_Security" }, /turf/open/floor/wood/ship,